full multiplayer plus new models

This commit is contained in:
2023-11-19 18:47:52 +11:00
parent 422c163dcd
commit edbb3261c6
126 changed files with 2343 additions and 492 deletions

View File

@@ -17,6 +17,10 @@ func _physics_process(_delta: float) -> void:
fire(enemy)
func aim():
pass
func fire(target):
if is_instance_valid(target) and target.alive:
target.damage(damage)