This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// input ports | |
const audioBufferPort = op.inObject("Audio Buffer", null, "audioBuffer"); | |
const playPort = op.inBool("Start / Stop", false); | |
const inResetStart = op.inTriggerButton("Restart"); | |
const offsetPort = op.inFloat("Offset", 0); | |
const loopPointPort = op.inFloat("Loop point", 0); | |
const playbackRatePort = op.inFloat("Playback Rate", 1); | |
const detunePort = op.inFloat("Detune", 0); |
OlderNewer