Example #1
0
    public void QueueAudio(float3 position, string soundName)
    {
        TempSound tempSound = new TempSound {
            position = position, soundName = soundName
        };

        cq.Enqueue(tempSound);
    }
Example #2
0
 void Awake()
 {
     TempSound.instance_ = this;
 }