Processing, 类SinOsc
中的amp()
用法介绍。
用法
.amp(amp)
参数
amp
(float)
一个介于 0.0(完全静音)和 1.0(全音量)之间的浮点值,用于控制此声音的幅度/音量。
返回
void
说明
更改正弦振荡器的幅度/音量。允许的值介于 0.0 和 1.0 之间。
例子
import processing.sound.*;
SinOsc sine;
void setup() {
size(640, 360);
background(255);
// Create the sine oscillator
sine = new SinOsc(this);
sine.play();
sine.amp(0.5);
}
void draw() {
}
相关用法
- Processing SinOsc.add()用法及代码示例
- Processing SinOsc.freq()用法及代码示例
- Processing SinOsc.pan()用法及代码示例
- Processing SinOsc.play()用法及代码示例
- Processing SinOsc.set()用法及代码示例
- Processing SinOsc.stop()用法及代码示例
- Processing SinOsc用法及代码示例
- Processing SawOsc.pan()用法及代码示例
- Processing String用法及代码示例
- Processing StringList用法及代码示例
- Processing Sound.inputDevice()用法及代码示例
- Processing StringList.remove()用法及代码示例
- Processing SoundFile.pan()用法及代码示例
- Processing Serial.readChar()用法及代码示例
- Processing SPI.settings()用法及代码示例
- Processing SqrOsc.freq()用法及代码示例
- Processing StringDict用法及代码示例
- Processing SoundFile.cue()用法及代码示例
- Processing StringDict.keys()用法及代码示例
- Processing Serial.read()用法及代码示例
- Processing Serial.available()用法及代码示例
- Processing Serial.lastChar()用法及代码示例
- Processing StringDict.size()用法及代码示例
- Processing Serial.readStringUntil()用法及代码示例
- Processing StringDict.hasKey()用法及代码示例
注:本文由纯净天空筛选整理自processing.org大神的英文原创作品 SinOsc.amp()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。