Text set error
What is %??? use $!!!
THis guy has no % thats why it dont work i rink
kuligs2 %
is used for unique nodes, it is for use with a single node that must act as a singleton but not be an autoload.
retrieving nodes with %
and $
is bad practice and mostly used for teaching.
using $
in a scene that will be instantiated is ok, because the tree is not prone to change and the nodes are local, but it's usage must be reduced by the use of references and methods because it means that if the node structure is changed, only one line of code has to be edited, instead of having to search through the script to replace each usage.
using $label
is the equivalent of doing get_node("label")
, so it's best to only do it once in ready
or onready