UnityEngine.AudioSource.GetOutputDataHelper C# (CSharp) Метод

GetOutputDataHelper() приватный Метод

private GetOutputDataHelper ( float samples, int channel ) : void
samples float
channel int
Результат void
        private extern void GetOutputDataHelper(float[] samples, int channel);
        [MethodImpl(MethodImplOptions.InternalCall)]

Usage Example

Пример #1
0
 public void GetOutputData(float[] samples, int channel)
 {
     AudioSource.GetOutputDataHelper(this, samples, channel);
 }
All Usage Examples Of UnityEngine.AudioSource::GetOutputDataHelper