Ok, so I has a hierarchy like this:
Map--V
->MapGeo
->MapCounties
->MapCulture
->Panel---V (has my sript)
------------->Enter (On click condition)
->Heraldicsof_counties
Thing is A.hide(), A.show() is working well with other stuf (for child nodes)
It doesn't work for path nodes:
func EnterLand():
var B1 = $"/root/Map/MapGeo"
var B2 = $"/root/Map/MapCounties"
var B3 = $"/root/Map/MapCulture"
var B4 = $"/root/Map/Heraldicsof_counties"
print(B1,B2,B3,B4)
B1.hide()
B2.hide()
B3.hide()
B4.hide()
func onEnter_pressed():
EnterLand()
I was trying to check if something is wrong with a script but as I see from print I get the right nodes:
[Sprite:1303][Sprite:1304][Sprite:1305][Control:1342]
So I can not use hide(), show() for non-child nodes? Since I tried it and it works well if I lunch it from Map's script (which is my main root).
Also, I wanted to ask if this engine has data analitic functions? Since I'm a Math student I see it as super tool to show data and so on... If it does have something similiar like R does for plots or calculations that would become top tool.
And thanks for all help I might get :)