conforms file names to consistant standard
This commit is contained in:
71
scripts/projectiles/explosive_projectile.gd
Normal file
71
scripts/projectiles/explosive_projectile.gd
Normal file
@@ -0,0 +1,71 @@
|
||||
class_name ExplosiveProjectile
|
||||
extends Projectile
|
||||
|
||||
@export var explosion_range: float = 3.0
|
||||
|
||||
var exploded: bool = false
|
||||
var sound_done: bool = false
|
||||
var particles_done: bool = false
|
||||
|
||||
|
||||
func _process(delta: float) -> void:
|
||||
super._process(delta)
|
||||
if !exploded and time_alive >= lifetime:
|
||||
explode()
|
||||
|
||||
|
||||
func _on_body_entered(_body: Node) -> void:
|
||||
explode()
|
||||
|
||||
|
||||
func explode() -> void:
|
||||
if is_multiplayer_authority() and !exploded:
|
||||
freeze = true
|
||||
exploded = true
|
||||
$CollisionShape3D.call_deferred("set_disabled", true)
|
||||
for enemy: EnemyController in get_tree().get_nodes_in_group("Enemies"):
|
||||
if global_position.distance_to(enemy.global_position) <= explosion_range:
|
||||
hit(enemy)
|
||||
networked_hit.rpc(get_tree().root.get_path_to(enemy))
|
||||
networked_kill.rpc()
|
||||
$Sprite3D.set_visible(false)
|
||||
$GPUParticles3D.emitting = true
|
||||
$AudioStreamPlayer.play()
|
||||
|
||||
|
||||
func hit(target: CharacterBody3D) -> void:
|
||||
target.apply_effect(effect)
|
||||
#if owner_id == 0:
|
||||
#if Data.preferences.display_tower_damage_indicators:
|
||||
#spawn_damage_indicator(target.d_n.global_position)
|
||||
#if owner_id == multiplayer.get_unique_id():
|
||||
#if Data.preferences.display_self_damage_indicators:
|
||||
#spawn_damage_indicator(target.d_n.global_position)
|
||||
#if owner_id != 0 and owner_id != multiplayer.get_unique_id():
|
||||
#if Data.preferences.display_party_damage_indicators:
|
||||
#spawn_damage_indicator(target.d_n.global_position)
|
||||
|
||||
|
||||
@rpc("reliable")
|
||||
func networked_hit(target_node_path: String) -> void:
|
||||
var target: CharacterBody3D = get_tree().root.get_node(target_node_path)
|
||||
hit(target)
|
||||
|
||||
|
||||
@rpc("reliable")
|
||||
func networked_kill() -> void:
|
||||
$Sprite3D.set_visible(false)
|
||||
$GPUParticles3D.emitting = true
|
||||
$AudioStreamPlayer.play()
|
||||
|
||||
|
||||
func _on_audio_stream_player_finished() -> void:
|
||||
sound_done = true
|
||||
if sound_done and particles_done:
|
||||
queue_free()
|
||||
|
||||
|
||||
func _on_gpu_particles_3d_finished() -> void:
|
||||
particles_done = true
|
||||
if sound_done and particles_done:
|
||||
queue_free()
|
||||
Reference in New Issue
Block a user