mirror of
https://github.com/AnnulusGames/Alchemy.git
synced 2025-01-22 00:08:53 -05:00
Fix: UnsignedIntegerField to UnsignedLongField for ulong Type
This commit is contained in:
parent
55e9495c88
commit
d6ead526bf
@ -127,7 +127,7 @@ namespace Alchemy.Editor.Elements
|
||||
else if (type == typeof(ulong))
|
||||
{
|
||||
#if UNITY_2022_2_OR_NEWER
|
||||
AddField(new UnsignedIntegerField(label), (ulong)obj);
|
||||
AddField(new UnsignedLongField(label), (ulong)obj);
|
||||
#else
|
||||
var value = (ulong)obj;
|
||||
var control = new LongField(label);
|
||||
|
Loading…
Reference in New Issue
Block a user