예제 #1
0
 public void StartRainForestAmbienceMultisample()
 {
     if (!this.m_RainforestMSStarted)
     {
         this.m_AmbientMS = MSManager.Get().PlayMultiSample("Rainforest_Ambience", 1f);
     }
     this.m_RainforestMSStarted = true;
 }
예제 #2
0
 protected override void OnExit()
 {
     base.OnExit();
     MSManager.Get().StopMultiSample(this, this.m_Multisample, (this.m_InnerSource == null) ? this.m_FadeOut : 0f);
 }
예제 #3
0
 protected override void OnEnter()
 {
     base.OnEnter();
     this.m_Multisample = MSManager.Get().PlayMultiSample(this, this.m_MultisampleName, this.m_FadeIn, this.m_ChangeRainforestAmbientVolume, this.m_RainforestAmbientVolume);
 }
예제 #4
0
 protected override void OnEnter()
 {
     base.OnEnter();
     this.m_Multisample = MSManager.Get().PlayMultiSample(this.m_MultisampleName, this.m_FadeIn);
 }
예제 #5
0
 protected override void OnExit()
 {
     base.OnExit();
     MSManager.Get().StopMultiSample(this.m_Multisample, this.m_FadeOut);
 }