// Update is called once per frame
 void Update()
 {
     // If we are currently interacting with an item and it has become disabled, remove it from our minds
     if (_hitComp != null)
     {
         if (_hitComp.GetDisabled())
         {
             _hitComp = null;
         }
     }
 }