Add spine and dialogic museums

This commit is contained in:
2026-06-15 00:35:27 +02:00
parent 12efcbb4a6
commit a621366717
1088 changed files with 74220 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
@tool
extends Tree
var previous_selected : TreeItem = null
func _get_drag_data(at_position: Vector2) -> Variant:
var item := get_item_at_position(at_position)
if item.get_metadata(0) and typeof(item.get_metadata(0)) == TYPE_STRING and item.get_metadata(0).begins_with("res://"):
return {"files":[item.get_metadata(0)]}
return null