How does one return the type of a node in godot3?
http://docs.godotengine.org/en/stable/classes/class_object.html#class-object-get-type
aNode.get_type() Seems to be missing from the API - nowhere to be seen in the documentation.
typeof() returns the type of a variable
what i need is to return the type of a node ("Node2d" or "Label")
It's called get_class() now.
ah sorry, couldn't find it
thank you @vnen
Most helpful comment
It's called
get_class()now.