- Edited
I have a Tree node displaying a folder, and I want a user to be able to drag a file from the tree to somewhere else in the GUI. How can I do this?
I have a Tree node displaying a folder, and I want a user to be able to drag a file from the tree to somewhere else in the GUI. How can I do this?
a script for basic drag and drop: https://godotengine.org/qa/6614/input-for-click-and-click-drag
and for get item name on tree node get_node("your_node_name").get_selected().get_text(0)
Sorry for the super late reply, this seems like what I'm looking for, thanks!