Alright so basically the cube will soon be a ladder, all scripting for that will be done later. the ladder has the name “TestLadder” and the controller still has the name “First Person Controller”. At the moment my script has.
function OnCollisionEnter(theCollision : Collision){
if(theCollision.gameObject.name == "TestLadder"){
Debug.Log("Collsion works");
}
}
I check my logs but nothing is there, help?