Cinematic Trigger?

Hey,

Does anyone have a way of when hitting a trigger, playing an animation in the game world, i.e soldier touches triggers, activates the animation helicopter to fly over him? I have all the animations and set up triggers but need to know what script to use to activate the animation to start on the touch of the trigger?

Hope that made sense,

Regards

Kieren :hushed:

you can use this thing…instead of destroying the gameObject you can play the animation.

function OnTriggerEnter (other : Collider) {
Destroy(other.gameObject);
}

i hope this work for you