turret tweaks

This commit is contained in:
derek
2024-07-18 13:45:37 -05:00
parent 330e4a599d
commit 5f67dbe6ba
11 changed files with 95 additions and 36 deletions

View File

@@ -3,6 +3,7 @@ extends Node3D
@export var player : Node
@export var money = 250
@export var health = 3
@export var gun_1 : Resource
@export var gun_2 : Resource
var held_guns = []
@@ -30,7 +31,7 @@ func _ready():
gun_spawn(0)
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta):
func _process(_delta):
pass
func gun_spawn(index):