Initial repo

This commit is contained in:
zerothelootrat
2024-06-03 05:29:11 -04:00
commit 613fc89bab
33 changed files with 974 additions and 0 deletions

18
Scripts/enemy_laser.gd Normal file
View File

@@ -0,0 +1,18 @@
extends Area2D
var speed = 500
func _physics_process(delta):
global_position.y += speed * delta
if global_position.y > 1000:
queue_free()
#this is where i do stuff
func _on_area_entered(area):
if area is player:
area.take_damage(1)
queue_free()