AGS.Editor.Utilities.IsMonoRunning C# (CSharp) Метод

IsMonoRunning() публичный статический Метод

public static IsMonoRunning ( ) : bool
Результат bool
        public static bool IsMonoRunning()
        {
            return Type.GetType("Mono.Runtime") != null;
        }

Usage Example

Пример #1
0
        public IrrklangPlayer(AudioClip clip)
        {
            if (!File.Exists(clip.CacheFileName))
            {
                throw new AGSEditorException("AudioClip file is missing from the audio cache");
            }

            if (Utilities.IsMonoRunning())
            {
                _soundEngine = new ISoundEngine(SoundOutputDriver.AutoDetect);
            }
            else
            {
                // explicitly ask for the software driver as there seem to
                // be issues with ISound returning bad data when re-using
                // the same source and certain audio drivers
                _soundEngine = new ISoundEngine(SoundOutputDriver.WinMM);
            }

            // we have to read it into memory and then play from memory,
            // because the built-in Irrklang play from file function keeps
            // the file open and locked
            byte[] audioData = File.ReadAllBytes(clip.CacheFileName);
            _source    = _soundEngine.AddSoundSourceFromMemory(audioData, clip.CacheFileName);
            _audioClip = clip;
        }
All Usage Examples Of AGS.Editor.Utilities::IsMonoRunning