This website works better with JavaScript.
Home
Help
Sign In
VCVRack
/
VCV-Prototype
mirror of
https://github.com/VCVRack/VCV-Prototype.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
3
Wiki
Activity
Browse Source
Add fall.js test.
tags/v1.1.1
Andrew Belt
5 years ago
parent
0612b0c937
commit
910449fbc2
1 changed files
with
10 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+10
-0
tests/fall.js
+ 10
- 0
tests/fall.js
View File
@@ -0,0 +1,10 @@
config.frameDivider = 1
config.bufferSize = 32
var v = 0
function process(block) {
for (var i = 0; i < block.bufferSize; i++) {
block.outputs[0][i] = v
v -= block.sampleTime * 0.1
}
}
Write
Preview
Loading…
Cancel
Save