reated keys work in terminal

This commit is contained in:
Brazly
2026-01-17 22:23:36 +00:00
parent 1b8896b860
commit 129309ec3e
85 changed files with 418 additions and 171 deletions

View File

@@ -5,7 +5,7 @@ extends OmniLight3D
var randomRange: float = 0.0
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta: float) -> void:
func _process(_delta: float) -> void:
light.light_energy = lerp(light.light_energy, randomRange, 0.3)
pass