ABCORS.ABookCaseOrbitalReferenceSystem.Start C# (CSharp) Méthode

Start() protected méthode

protected Start ( ) : void
Résultat void
        protected void Start()
        {
            PluginConfiguration config = PluginConfiguration.CreateForType<ABookCaseOrbitalReferenceSystem>();
            config.load();
            float rectWidth = config.GetValue<int>("displayWidth", 160);
            float rectHeight = config.GetValue<int>("displayHeight", 160);
            _popup.Set(0, 0, rectWidth, rectHeight);
            _allowTarget = config.GetValue<bool>("allowTarget", _allowTarget);
            _showTime = config.GetValue<bool>("showTime", _showTime);
            _showAltitude = config.GetValue<bool>("showAltitude", _showAltitude);
            _showSpeed = config.GetValue<bool>("showSpeed", _showSpeed);
            _showAngleToPrograde = config.GetValue<bool>("showAngleToPrograde", _showAngleToPrograde);
        }