mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-05 12:45:54 +00:00
9 lines
125 B
GDScript
9 lines
125 B
GDScript
@tool
|
|
extends Button
|
|
|
|
|
|
func _on_mouse_entered():
|
|
scale = Vector2(1.05, 1.05)
|
|
|
|
func _on_mouse_exited():
|
|
scale = Vector2.ONE
|