コード例 #1
0
ファイル: lb_Bird.cs プロジェクト: DevZhav/The-Forest
 private void StopEvents()
 {
     foreach (EventInstance instance in this.eventInstances)
     {
         FMODCommon.StopEvent(instance);
     }
     this.eventInstances.Clear();
     this.StopSong();
 }
コード例 #2
0
ファイル: lb_Bird.cs プロジェクト: DevZhav/The-Forest
 private void StopSong()
 {
     FMODCommon.StopEvent(this.songInstance);
     this.songInstance = null;
 }