Table of Contents

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 = 4

Represents a boolean value.

FloatingPoint = 3

Represents a floating-point number value.

Integer = 1

Represents a 32-bit integer value.

LongInteger = 2

Represents a 64-bit integer value.

Nil = 0

Represents a null or undefined value.

Object = 6

Represents a complex object value.

Text = 5

Represents a text string value.