ess_data/panels/ResourceRowMainButton.gd

19 lines
279 B
GDScript3
Raw Permalink Normal View History

2019-12-20 01:05:20 +01:00
tool
extends Button
var _data : Resource
func get_drag_data(position):
if _data == null:
return null
var d : Dictionary = Dictionary()
d["type"] = "resource"
d["resource"] = _data
d["from"] = self
return d
func set_resource(data : Resource) -> void:
_data = data