In my script it has something easy like this:
var checktrigger = 0; function OnTriggerEnter(other : Collider){ //The other object is moving all the time and in a specific moment pass the gameObject checktrigger = 1; }
The object that has this script is with trigger and the other object do not has trigger but when play the game it never appears in the var checktrigger the number 1.
Please I need recomendations of what i have to do to work.