ld56/enemy.gd

12 lines
189 B
GDScript3
Raw Normal View History

2024-10-05 10:39:19 +00:00
extends Node2D
func button_pressed():
queue_free()
func _on_first_timer_timeout() -> void:
scale = Vector2(1.2,1.2)
func _on_second_timer_timeout() -> void:
scale = Vector2(1.4,1.4)