private void InitializeHudInterface(HudConfig hudConfig)
        {
            HudConstants hudConstants = new HudConstants(droneControl.FrontCameraFieldOfViewDegrees);

            hudInterface = new HudInterface(hudConfig, hudConstants);
        }
Exemplo n.º 2
0
        private void InitializeHudInterface()
        {
            _currentHudConfig = new HudConfig();

            HudConstants hudConstants = new HudConstants( _droneControl.FrontCameraFieldOfViewDegrees );

            _hudInterface = new HudInterface( _currentHudConfig, hudConstants );
        }