Microsoft.Xna.Framework.Audio.SoundEffectInstance.PlatformSetPan C# (CSharp) Méthode

PlatformSetPan() private méthode

private PlatformSetPan ( float value ) : void
value float
Résultat void
        private void PlatformSetPan(float value)
        {
            if (streamId != 0)
            {
                float leftVolume, rightVolume;
                XnaVolumeAndPanToAndroidVolume(_volume, value, out leftVolume, out rightVolume);
                s_soundPool.SetVolume(streamId, leftVolume, rightVolume);
            }
        }