Tileset, Audio Changes, and Portal changes

This commit is contained in:
2026-03-11 12:23:53 -04:00
parent 8b2e059f07
commit 75403e7c1d
5 changed files with 293 additions and 34 deletions
+3
View File
@@ -64,6 +64,9 @@ func apply_slow(duration: float, factor: float) -> void:
# Stack slows by adding new effect - factors multiply together
_slow_effects.append({"factor": factor, "timer": duration})
func clear_slows() -> void:
_slow_effects.clear()
func _tick_slow(delta: float) -> void:
# Tick down all slow effects and remove expired ones
var i := _slow_effects.size() - 1