+ torches

This commit is contained in:
2026-09-01 08:58:56 +03:00
parent 98c6f1285a
commit 271be0b26b
13 changed files with 251 additions and 2 deletions
+12
View File
@@ -0,0 +1,12 @@
extends Node3D
# Called when the node enters the scene tree for the first time.
func _ready() -> void:
# Sets a random speed multiplier between 0.8 and 1.3
$AnimationPlayer.speed_scale = randf_range(0.8, 1.3)
$AnimationPlayer.play("fire_loop")