they can hear now too

This commit is contained in:
derek
2025-05-02 15:52:07 -05:00
parent 083f1eec83
commit 88a60d469e
9 changed files with 131 additions and 38 deletions

View File

@@ -1,11 +1,13 @@
extends Node3D
@onready var die_particles = $dieParticles
@onready var die_particles_2: GPUParticles3D = $dieParticles2
@export var audio_explode : Node
# Called when the node enters the scene tree for the first time.
func _ready():
die_particles.emitting = true
die_particles_2.emitting = true
audio_explode.play()
# Called every frame. 'delta' is the elapsed time since the previous frame.