/// <summary>
    /// The most recent Z Gyroscope value received from the handheld controller device.
    /// </summary>
    public int GetZGyro()
    {
        if (!IsBridgeInitialized)
        {
            return(0);
        }

        return(_controllerPlugin.GetZGyro());
    }