public LeanAudioOptions setWaveStyle(LeanAudioOptions.LeanAudioWaveStyle style)
 {
     this.waveStyle = style;
     return(this);
 }
 public LeanAudioOptions setWaveSawtooth()
 {
     this.waveStyle = LeanAudioOptions.LeanAudioWaveStyle.Sawtooth;
     return(this);
 }
 public LeanAudioOptions setWaveSquare()
 {
     this.waveStyle = LeanAudioOptions.LeanAudioWaveStyle.Square;
     return(this);
 }
 public LeanAudioOptions setWaveNoise()
 {
     this.waveStyle = LeanAudioOptions.LeanAudioWaveStyle.Noise;
     return(this);
 }