initial commit

This commit is contained in:
2024-10-05 12:39:19 +02:00
commit 1cda262976
12 changed files with 188 additions and 0 deletions

11
enemy.gd Normal file
View File

@@ -0,0 +1,11 @@
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)