red1939
red1939
@h0lley So there are at least scenarios that need fixing: ```gdscript @export_enum("Rebecca", "Mary", "Leah") var character_name: String @export_enum("Rebecca", "Mary", "Leah") var character_name: Array[String] @export_enum("Warrior", "Magician", "Thief") var character_class : Array[int]...
I don't know if I am not opening a pandoras box here, but I will try to create a draft merge request with the support added for 2 types of...
I have good news and bad ones. Good one is that everything bar `Array` works. So you can have `String` or `int` or nothing, and it works correctly. No errors,...
Wouldn't it make sense to treat all properties as `onready`? Currently, it seems that the `setget` is ran before `_ready` so accessing any nested nodes will fail (as probably everyone...