-
-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add increment buttons to transform editors
- Loading branch information
Showing
7 changed files
with
314 additions
and
85 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,14 @@ | ||
namespace Brio.UI.Controls.Core; | ||
|
||
| ||
namespace Brio.UI.Controls.Core; | ||
internal static class UIConstants | ||
{ | ||
public const uint ToggleButtonInactive = 0xFFFFFFFF; | ||
public const uint ToggleButtonActive = 0xFF0050FF; | ||
public const uint Transparent = 0x00000000; | ||
|
||
public const uint SlightGrey = 0xFF999999; | ||
|
||
public const uint GizmoBlue = 0x88FF3333; | ||
public const uint GizmoGreen = 0x8833FF33; | ||
public const uint GizmoRed = 0x883333FF; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.