Crosshair3D.EndHover C# (CSharp) 메소드

EndHover() 개인적인 메소드

private EndHover ( ) : void
리턴 void
    void EndHover()
    {
        if (previousHitGameObject != null)
        {
          SendEventToGameObject(previousHitGameObject, "OnHoverEnd");
          previousHitGameObject = null;
        }

        // it's save to call this every time.  sometimes previousHitGameObject becomes null and testing previousHitGameObject.tag == kCrosshairTargetable fails?
        _animatedCrosshair.SetState(ReticleState.kClosed);
    }