added enemy taunts

This commit is contained in:
Derek
2024-08-07 22:32:25 -05:00
parent 5652e75508
commit 5b618f1ab8
9 changed files with 70 additions and 7 deletions

View File

@@ -20,5 +20,5 @@ func hit(bullet_damage):
var number_spawn = damage_number.instantiate()
number_spawn.damage_amt = bullet_damage * damage
number_spawn.position = global_position + Vector3(0,1,0)
number_spawn.position = global_position + Vector3(0,2,0)
get_tree().get_root().add_child(number_spawn)