示例#1
0
 public void PlayCrash()
 {
     if (this.muted)
     {
         return;
     }
     crashClip.PlayIn(SFX_AS);
 }
示例#2
0
 public void PlayChangeColor()
 {
     if (this.muted)
     {
         return;
     }
     changeColorClip.PlayIn(SFX_AS);
 }
示例#3
0
 public void PlayGetPoint()
 {
     if (this.muted)
     {
         return;
     }
     getPointClip.PlayIn(SFX_AS);
 }
示例#4
0
 public void PlayFly()
 {
     if (this.muted)
     {
         return;
     }
     flyClip.PlayIn(SFX_AS);
 }
示例#5
0
 public void PlayGameMusic()
 {
     if (this.muted)
     {
         return;
     }
     musicClip.PlayIn(BG_AS);
 }
示例#6
0
 public void PlayStartMusic()
 {
     if (this.muted)
     {
         return;
     }
     startClip.PlayIn(BG_AS);
 }