Just wondering if I am not understanding things properly - but do trigger events only fire off once?
I’ve modified the animation in the posted example www.otee.dk/joe/trigger.zip so that cube passes back through the collider which is a trigger.
I also added the following
function OnTriggerEnter (col : Collider) {
print("Entering trigger");
}
function OnTriggerExit (col : Collider) {
print("Exit trigger");
}
so that I could see when events were firing. The OnTriggerEnter event only happens once ( or appears to), am I misinterpreting the way these events should work as this appears to be the main reason why much of my current game is not working - I’m relying on the trigger events to fire off more than once.