public void CollisionExit(string coll_name, GameObject other)
 {
     switch (coll_name)
     {
     case "C":     // Contact collider
         m_BarnObjectModel.TriggerContactExit(other);
         break;
     }
 }