godot enums code example
Example: godot enum
# Enum Is Used To Create A Certain Amount Of Related Constants
enum my_enum {
MYCONST1,
MYCONST2 = 10,
}
# Enum Is Used To Create A Certain Amount Of Related Constants
enum my_enum {
MYCONST1,
MYCONST2 = 10,
}