Godot Version
Godot 4.5.1
Question
Hw can I retreive the info from nodes that the remote scene tree shows on scene root nodes? I tried the obvious `Node.scene_file_path` but this is empty. there is this info stored?
Godot 4.5.1
Hw can I retreive the info from nodes that the remote scene tree shows on scene root nodes? I tried the obvious `Node.scene_file_path` but this is empty. there is this info stored?
Only the root node has the scene file path. To get the root node from any node in the scene, use the owner property.
It was my own stupidness scene_file_pathdid return the correct path - I messed up my print statement.