Enum LuaField.LuaFieldType
- Namespace
- Cobilas.GodotEngine.GDLua
- Assembly
- com.cobilas.godot.lua.dll
Specifies the data type of the Lua field value.
public enum LuaField.LuaFieldType : byte
Fields
Boolean = 4Represents a boolean value.
FloatingPoint = 3Represents a floating-point number value.
Integer = 1Represents a 32-bit integer value.
LongInteger = 2Represents a 64-bit integer value.
Nil = 0Represents a null or undefined value.
Object = 6Represents a complex object value.
Text = 5Represents a text string value.