Fix EnumComboBox to support negative items as a cost of lack of uint64 support
This commit is contained in:
@@ -32,7 +32,7 @@ namespace FlaxEditor.Surface.Elements
|
||||
Width = archetype.Size.X;
|
||||
ParentNode = parentNode;
|
||||
Archetype = archetype;
|
||||
Value = (ulong)(int)ParentNode.Values[Archetype.ValueIndex];
|
||||
Value = (int)ParentNode.Values[Archetype.ValueIndex];
|
||||
}
|
||||
|
||||
/// <inheritdoc />
|
||||
|
||||
Reference in New Issue
Block a user