conforms file names to consistant standard

This commit is contained in:
2026-02-21 04:24:04 +11:00
parent 6b67dd9755
commit 5a4ad8633a
1991 changed files with 3836 additions and 7976 deletions

View File

@@ -0,0 +1,13 @@
class_name OverclockTower
extends Tower
func shoot(count: int) -> void:
#affector.apply_effect(effect, target_finder.targets)
for tower: TowerBase in get_tree().get_nodes_in_group("TowerBases"):
if tower.tower and tower.tower.stats != stats:
if tower.global_position.distance_to(global_position) <= target_range:
tower.tower.small_speed_buff_timer += time_between_shots
animator.play("shoot")
audio_player.play()
if is_multiplayer_authority():
networked_shoot.rpc()