Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

oncollisionenter is declared but never used


//The problem is that you need to move this out of a void [e.g. void Start() or void Update()] 

void OnCollisionEnter(Collision collision)
    {
        if (other.gameObject.tag == "Object") 
         {
             Debug.Log ("Collided");
         }
    }

//Also same with OnCollisionEnter2D, OnTriggerEnter and OnTriggerEnter2d
 
PREVIOUS NEXT
Tagged: #oncollisionenter #declared
ADD COMMENT
Topic
Name
1+1 =