static bool OnUnload(UnityModManager.ModEntry modEntry)
        {
            if (modEntry.Active)
            {
                SmoothTracking.TeardownSmoothedCamera();
            }

            return(true);
        }
        static bool OnToggle(UnityModManager.ModEntry modEntry, bool isTogglingOn)
        {
            if (isTogglingOn)
            {
                SmoothTracking.SetupSmoothedCamera();
            }
            else
            {
                SmoothTracking.TeardownSmoothedCamera();
            }

            return(true);
        }