began work on STG-2600
This commit is contained in:
parent
c3b6ef3467
commit
0a4d9995d0
6 changed files with 351 additions and 0 deletions
7
objects/enemy/2600_bullet.gd
Normal file
7
objects/enemy/2600_bullet.gd
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue