cirnogodot/addons/scene_palette/components/favorite_button/Button.gd

9 lines
125 B
GDScript3
Raw Normal View History

2025-02-24 11:57:09 +01:00
@tool
extends Button
func _on_mouse_entered():
scale = Vector2(1.05, 1.05)
func _on_mouse_exited():
scale = Vector2.ONE