Merge pull request #68866 from raulsntos/dotnet/godot-enums
C#: Synchronize Godot enums with core
This commit is contained in:
commit
52c51563fd
@ -71,29 +71,29 @@ namespace Godot.SourceGenerators
|
|||||||
Expression = 19,
|
Expression = 19,
|
||||||
PlaceholderText = 20,
|
PlaceholderText = 20,
|
||||||
ColorNoAlpha = 21,
|
ColorNoAlpha = 21,
|
||||||
ImageCompressLossy = 22,
|
ObjectId = 22,
|
||||||
ImageCompressLossless = 23,
|
TypeString = 23,
|
||||||
ObjectId = 24,
|
NodePathToEditedNode = 24,
|
||||||
TypeString = 25,
|
MethodOfVariantType = 25,
|
||||||
NodePathToEditedNode = 26,
|
MethodOfBaseType = 26,
|
||||||
MethodOfVariantType = 27,
|
MethodOfInstance = 27,
|
||||||
MethodOfBaseType = 28,
|
MethodOfScript = 28,
|
||||||
MethodOfInstance = 29,
|
PropertyOfVariantType = 29,
|
||||||
MethodOfScript = 30,
|
PropertyOfBaseType = 30,
|
||||||
PropertyOfVariantType = 31,
|
PropertyOfInstance = 31,
|
||||||
PropertyOfBaseType = 32,
|
PropertyOfScript = 32,
|
||||||
PropertyOfInstance = 33,
|
ObjectTooBig = 33,
|
||||||
PropertyOfScript = 34,
|
NodePathValidTypes = 34,
|
||||||
ObjectTooBig = 35,
|
SaveFile = 35,
|
||||||
NodePathValidTypes = 36,
|
GlobalSaveFile = 36,
|
||||||
SaveFile = 37,
|
IntIsObjectid = 37,
|
||||||
GlobalSaveFile = 38,
|
IntIsPointer = 38,
|
||||||
IntIsObjectid = 39,
|
ArrayType = 39,
|
||||||
IntIsPointer = 41,
|
LocaleId = 40,
|
||||||
ArrayType = 40,
|
LocalizableString = 41,
|
||||||
LocaleId = 42,
|
NodeType = 42,
|
||||||
LocalizableString = 43,
|
HideQuaternionEdit = 43,
|
||||||
NodeType = 44,
|
Password = 44,
|
||||||
Max = 45
|
Max = 45
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -128,12 +128,14 @@ namespace Godot.SourceGenerators
|
|||||||
DeferredSetResource = 33554432,
|
DeferredSetResource = 33554432,
|
||||||
EditorInstantiateObject = 67108864,
|
EditorInstantiateObject = 67108864,
|
||||||
EditorBasicSetting = 134217728,
|
EditorBasicSetting = 134217728,
|
||||||
|
ReadOnly = 268435456,
|
||||||
Array = 536870912,
|
Array = 536870912,
|
||||||
Default = 6,
|
Default = 6,
|
||||||
DefaultIntl = 38,
|
DefaultIntl = 38,
|
||||||
NoEditor = 2
|
NoEditor = 2
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[Flags]
|
||||||
public enum MethodFlags
|
public enum MethodFlags
|
||||||
{
|
{
|
||||||
Normal = 1,
|
Normal = 1,
|
||||||
|
Loading…
Reference in New Issue
Block a user