/// <summary>
    /// Limit how many data records from the handheld controller device the ControllerPlugin retains. Set to 0 to retain only the most recent byte array received. Set any number N that is greater than 0 to store the last N records received. Approximately 60 values are received from Handheld Controllers each second.
    /// </summary>
    /// <param name="pRawDataSize">The Number of records to retain.</param>
    public void SetDataStorageSize(int pRawDataSize)
    {
        if (_controllerPlugin == null)
        {
            return;
        }

        _controllerPlugin.SetDataStorageSize(pRawDataSize);
    }