1.9.0: Added support for attributes for drawing handles in the scene
This commit is contained in:
parent
81906d49dd
commit
5ce34bde70
48 changed files with 1354 additions and 8 deletions
14
Runtime/Enums/EAxis.cs
Normal file
14
Runtime/Enums/EAxis.cs
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
using System;
|
||||
|
||||
namespace Module.Inspector
|
||||
{
|
||||
[Flags]
|
||||
public enum EAxis
|
||||
{
|
||||
None = 0,
|
||||
X = 1,
|
||||
Y = 2,
|
||||
Z = 4,
|
||||
All = X | Y | Z
|
||||
}
|
||||
}
|
||||
3
Runtime/Enums/EAxis.cs.meta
Normal file
3
Runtime/Enums/EAxis.cs.meta
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 6cea1a74f79c4b4e98b10fe9b98a0cfe
|
||||
timeCreated: 1669408493
|
||||
12
Runtime/Enums/ELabelType.cs
Normal file
12
Runtime/Enums/ELabelType.cs
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
using System;
|
||||
|
||||
namespace Module.Inspector
|
||||
{
|
||||
[Flags]
|
||||
public enum ELabelType
|
||||
{
|
||||
None = 0,
|
||||
Field = 1,
|
||||
Value = 2
|
||||
}
|
||||
}
|
||||
3
Runtime/Enums/ELabelType.cs.meta
Normal file
3
Runtime/Enums/ELabelType.cs.meta
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 00491187b70e400eb9bd403b49428b09
|
||||
timeCreated: 1669499298
|
||||
|
|
@ -6,6 +6,7 @@
|
|||
Drawer,
|
||||
ValueModifier,
|
||||
AccessModifier,
|
||||
HandleDrawer,
|
||||
Validate
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue