AcManager.Tools.Helpers.AcSettings.SystemSettings.LoadFromIni C# (CSharp) Метод

LoadFromIni() защищенный Метод

protected LoadFromIni ( ) : void
Результат void
        protected override void LoadFromIni() {
            LoadFfbFromIni(Ini);

            SimulationValue = Ini["ASSETTO_CORSA"].GetDouble("SIMULATION_VALUE", 0d).ToIntPercentage();
            DeveloperApps = Ini["AC_APPS"].GetBool("ENABLE_DEV_APPS", false);
            AllowFreeCamera = Ini["CAMERA"].GetBool("ALLOW_FREE_CAMERA", false);
            Logging = !Ini["LOG"].GetBool("SUPPRESS", false);
            HideDriver = Ini["DRIVER"].GetBool("HIDE", false);
            ScreenshotFormat = Ini["SCREENSHOT"].GetEntry("FORMAT", ScreenshotFormats);
            MirrorsFieldOfView = Ini["MIRRORS"].GetInt("FOV", MirrorsFieldOfViewDefault);
            MirrorsFarPlane = Ini["MIRRORS"].GetInt("FAR_PLANE", MirrorsFarPlaneDefault);
        }