began work on STG-2600

This commit is contained in:
pennyrigate 2023-08-22 23:00:48 -04:00
parent c3b6ef3467
commit 0a4d9995d0
6 changed files with 351 additions and 0 deletions

View file

@ -0,0 +1,7 @@
extends "res://objects/enemy/enemy.gd"
export var direction: Vector2 = Vector2.LEFT
export var speed: float = 50
func _physics_process(delta):
position += direction * speed * delta