public StandardVisualizer(MonoBehaviourThreading caller, DrawWaveform drawFunction)
 {
     this.caller       = caller;
     this.drawWaveForm = drawFunction;
 }
 public AsyncTask(MonoBehaviourThreading caller)
 {
     this.caller = caller;
 }
Пример #3
0
 public StandardVisualizer2(MonoBehaviourThreading caller, DrawWaveform drawFunction, AudioStreamReader reader) : base(caller)
 {
     this.drawWaveForm = drawFunction;
     this.reader       = reader;
 }