Hi
How can I access the parent of another game object when colliding with a child only.
I want to access a variable in the parent script.
For example:
function OnTriggerEnter(other: Collider){
other.parent.GetComponent("Script").variable = someVariable;
}