9 lines
140 B
GDScript
9 lines
140 B
GDScript
extends TextureButton
|
|
@onready var block_name = $Label
|
|
|
|
func _ready() -> void:
|
|
pass
|
|
|
|
|
|
func _on_pressed() -> void:
|
|
print(block_name.text)
|