I'm trying to make a script/tool so I can elongated a node properly without deforming the round parts, but it ends up showing me this error always (not only with with the scale propierty but with other ones) any idea how to get ride of it?
This is the primary error:
Node not found: Cuerpo
That's the "null instance" referenced in the other messages.
Yeah but I don't quite understand why is it an error? the node is right there
References to nodes should be obtained in _ready(), or using the onready modifier. Otherwise, the Scene tree may not be initialized yet.
_ready()
Or does that not apply to Editor scripting? I don't know much about that.