Better testscene

This commit is contained in:
2026-03-29 13:18:13 +02:00
parent 1fdb223f5d
commit 3f462d3482
27 changed files with 3714 additions and 3036 deletions

View File

@@ -0,0 +1,14 @@
-- heal_trigger.lua - Heals player when entering the zone
-- Attach to a PSXTriggerBox near a health pickup
function onTriggerEnter()
Debug.Log("Entered heal zone")
setStatus("Healing!")
applyHeal(50)
Audio.Play("heal", 100, 64)
end
function onTriggerExit()
Debug.Log("Left heal zone")
setStatus("Left the healing area")
end