@@ -82,6 +82,10 @@ namespace Percupuff
8282 float cowbellPanning;
8383 float cowbellVelocity;
8484 float cowbellMidi;
85+ float rideBellLevel;
86+ float rideBellPanning;
87+ float rideBellVelocity;
88+ float rideBellMidi;
8589 float sideStickLevel;
8690 float sideStickPanning;
8791 float sideStickVelocity;
@@ -165,6 +169,10 @@ namespace Percupuff
165169 p.cowbellPanning = 0.0f;
166170 p.cowbellVelocity = 100.0f;
167171 p.cowbellMidi = 56.0f;
172+ p.rideBellLevel = 50.0f;
173+ p.rideBellPanning = 0.0f;
174+ p.rideBellVelocity = 100.0f;
175+ p.rideBellMidi = 53.0f;
168176 p.sideStickLevel = 50.0f;
169177 p.sideStickPanning = 0.0f;
170178 p.sideStickVelocity = 100.0f;
@@ -248,6 +256,10 @@ namespace Percupuff
248256 input event float cowbellPanning [[ name: "cowbellPanning", min: -100, max: 100, init: 0, step: 5 ]];
249257 input event float cowbellVelocity [[ name: "cowbellVelocity", min: 0, max: 100, init: 100, step: 1 ]];
250258 input event float cowbellMidi [[ name: "cowbellMidi", min: 0, max: 127, init: 56, step: 1 ]];
259+ input event float rideBellLevel [[ name: "rideBellLevel", min: 0, max: 100, init: 50, step: 1 ]];
260+ input event float rideBellPanning [[ name: "rideBellPanning", min: -100, max: 100, init: 0, step: 5 ]];
261+ input event float rideBellVelocity [[ name: "rideBellVelocity", min: 0, max: 100, init: 100, step: 1 ]];
262+ input event float rideBellMidi [[ name: "rideBellMidi", min: 0, max: 127, init: 53, step: 1 ]];
251263 input event float sideStickLevel [[ name: "sideStickLevel", min: 0, max: 100, init: 50, step: 1 ]];
252264 input event float sideStickPanning [[ name: "sideStickPanning", min: -100, max: 100, init: 0, step: 5 ]];
253265 input event float sideStickVelocity [[ name: "sideStickVelocity", min: 0, max: 100, init: 100, step: 1 ]];
@@ -334,6 +346,10 @@ namespace Percupuff
334346 event cowbellPanning (float f) { params.cowbellPanning = f; update(); }
335347 event cowbellVelocity (float f) { params.cowbellVelocity = f; update(); }
336348 event cowbellMidi (float f) { params.cowbellMidi = f; update(); }
349+ event rideBellLevel (float f) { params.rideBellLevel = f; update(); }
350+ event rideBellPanning (float f) { params.rideBellPanning = f; update(); }
351+ event rideBellVelocity (float f) { params.rideBellVelocity = f; update(); }
352+ event rideBellMidi (float f) { params.rideBellMidi = f; update(); }
337353 event sideStickLevel (float f) { params.sideStickLevel = f; update(); }
338354 event sideStickPanning (float f) { params.sideStickPanning = f; update(); }
339355 event sideStickVelocity (float f) { params.sideStickVelocity = f; update(); }
0 commit comments