challenge-editor/scene/skill_config_card_up.gd

16 lines
246 B
GDScript3
Raw Normal View History

2024-09-29 18:09:09 +08:00
extends TextureRect
2024-09-30 18:06:45 +08:00
signal click
2024-09-29 18:09:09 +08:00
2024-09-30 18:06:45 +08:00
var data:Dictionary
func set_data(_data:Dictionary):
data=_data
%face.texture=Global.get_texture(data["texture"])
2024-09-29 18:09:09 +08:00
2024-09-30 18:06:45 +08:00
func _on_tool_button_pressed() -> void:
click.emit()
pass # Replace with function body.