hello,
Whenever i restart godot 4 i get a 'nil' error related to a get_node label
res://addons/tiletest/tiletest.gd:100 - Invalid set index 'text' (on base: 'Nil') with value of type 'String'.
if i use this:
if ( label1 != null ):
if ( mG.x > 0 ):
label1.text = "DOCK: " + str( mG );
else:
label1.text = "DOCK: ";
the error right away passes to the lower lines:
res://addons/tiletest/tiletest.gd:105 - Invalid get index 'position' (on base: 'Nil').
It seems everything is 'nil' on the frist run, the only way to get rid of the error is to uncheck/check the plugIn in project settings
Is there a way to fix the error ?
The plugIn can be found here on gitHub:
https://github.com/jonSP12/TileDrawPlugIN_test01