But the export cant handle enums like that it says… You peeps know of a good way of doing this? I would love to be able to choose the substance types via a enum dropdown (or similar) outside of the globals object.
This one “works” - but sucks.
@export var substanceType : int = globals.Substance.WATER #works but then type is selected with an int and not "nice" names.
Hey check out this thread. The issue is a Global (autoload) will create a node instance, so globals.Substance is trying to access a node’s property named “Substance”, but a enum is not a property, only a definition. You can access the script’s definitions by preloading it, or using a class_name for your script.