Exemple #1
0
 public LeanAudioOptions setWaveNoise()
 {
     waveStyle = LeanAudioWaveStyle.Noise;
     return(this);
 }
Exemple #2
0
 public LeanAudioOptions setWaveStyle(LeanAudioWaveStyle style)
 {
     waveStyle = style;
     return(this);
 }
Exemple #3
0
 public LeanAudioOptions setWaveSquare()
 {
     waveStyle = LeanAudioWaveStyle.Square;
     return(this);
 }
Exemple #4
0
 public LeanAudioOptions setWaveSawtooth()
 {
     waveStyle = LeanAudioWaveStyle.Sawtooth;
     return(this);
 }
Exemple #5
0
    /*
     *  public LeanAudioOptions setModulation( Vector3[] modulation ){
     *          this.modulation = modulation;
     *          return this;
     *  }*/

    public LeanAudioOptions setWaveSine()
    {
        this.waveStyle = LeanAudioWaveStyle.Sine;
        return(this);
    }
Exemple #6
0
 public LeanAudioOptions setWaveStyle( LeanAudioWaveStyle style )
 {
     this.waveStyle = style;
     return this;
 }
Exemple #7
0
 public LeanAudioOptions setWaveSquare()
 {
     this.waveStyle = LeanAudioWaveStyle.Square;
     return this;
 }
Exemple #8
0
 public LeanAudioOptions setWaveSawtooth()
 {
     this.waveStyle = LeanAudioWaveStyle.Sawtooth;
     return this;
 }
Exemple #9
0
 public LeanAudioOptions setWaveNoise()
 {
     this.waveStyle = LeanAudioWaveStyle.Noise;
     return this;
 }