private void Start()
    {
        // Store the graphics class.
        _uiGazeToggleButtonGraphics = GetComponent<UIGazeToggleButtonGraphics>();

        // Initialize the toggle event.
        if (OnButtonToggled == null)
        {
            OnButtonToggled = new UIToggleEvent();
        }
    }