Beispiel #1
0
 void OnTriggerEnter(Collider other)
 {
     if (other.tag == "CanSowHere" && other.GetComponentInChildren <OrbTree>() == null)
     {
         fertileGround = other.transform;
         holdableScript.SetOptionalAction(actionName);
     }
 }