mirror of
https://github.com/Relintai/broken_seals_2d.git
synced 2024-11-11 20:35:10 +01:00
19 lines
279 B
GDScript
19 lines
279 B
GDScript
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
|