Godot Version
4.2.2
Question
When using enum, if I make the enum with name like
class_name Class
enum ENUM{
ENUM1,
ENUM2,
}
I can use the ENUM with CLASS.ENUM.ENUM1.
But other preset classes like Input,
it can use the enums like Input.MOUSE_MODE_VISIBLE.
The editor also show the enums with just class name.
So the question is can I use the custom enums like Class.ENUM1 not Class.ENUM.ENUM1