I'm guessing, you need to access a collider outside of the trigger event? If so, you can do this:
#pragma strict
var externalCollider : Collider;
function OnTriggerEnter( col : Collider )
{
externalCollider = col;
}
Now that you have a reference, you can use the collider from the event for anything you need. Hope this helped...
↧