initial commit

This commit is contained in:
Derek
2024-07-14 13:13:05 -05:00
commit 9241836cf4
309 changed files with 15043 additions and 0 deletions

13
scripts/die_particles.gd Normal file
View File

@@ -0,0 +1,13 @@
extends Node3D
@onready var die_particles = $dieParticles
@onready var audio_die = $Audio/Die
# Called when the node enters the scene tree for the first time.
func _ready():
die_particles.emitting = true
audio_die.play()
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta):
pass