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

        cq.Enqueue(tempSound);
    }
コード例 #2
0
ファイル: TempSound.cs プロジェクト: gdgeek/fly
 void Awake()
 {
     TempSound.instance_ = this;
 }