Initial commit.
This commit is contained in:
commit
142bf87eca
24 changed files with 356 additions and 0 deletions
9
scripts/stock_weapon.gd
Normal file
9
scripts/stock_weapon.gd
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
extends Area2D
|
||||
|
||||
@onready var bullet = load("res://scenes/stock_weapon.tscn")
|
||||
|
||||
@export var shot_data: PlayerShot
|
||||
|
||||
|
||||
func _process(delta):
|
||||
position.y += shot_data.speed * delta
|
||||
Loading…
Add table
Add a link
Reference in a new issue