@@ -43,6 +43,10 @@ namespace Percupuff
4343 float crash1Midi;
4444 float crash2Midi;
4545 float crash3Midi;
46+ float rideBellLevel;
47+ float rideBellPanning;
48+ float rideBellVelocity;
49+ float rideBellMidi;
4650 float bongoLevel;
4751 float bongoPanning;
4852 float bongoVelocity;
@@ -82,10 +86,6 @@ namespace Percupuff
8286 float cowbellPanning;
8387 float cowbellVelocity;
8488 float cowbellMidi;
85- float rideBellLevel;
86- float rideBellPanning;
87- float rideBellVelocity;
88- float rideBellMidi;
8989 float sideStickLevel;
9090 float sideStickPanning;
9191 float sideStickVelocity;
@@ -130,6 +130,10 @@ namespace Percupuff
130130 p.crash1Midi = 49.0f;
131131 p.crash2Midi = 57.0f;
132132 p.crash3Midi = 52.0f;
133+ p.rideBellLevel = 50.0f;
134+ p.rideBellPanning = 0.0f;
135+ p.rideBellVelocity = 100.0f;
136+ p.rideBellMidi = 53.0f;
133137 p.bongoLevel = 50.0f;
134138 p.bongoPanning = 0.0f;
135139 p.bongoVelocity = 100.0f;
@@ -169,10 +173,6 @@ namespace Percupuff
169173 p.cowbellPanning = 0.0f;
170174 p.cowbellVelocity = 100.0f;
171175 p.cowbellMidi = 56.0f;
172- p.rideBellLevel = 50.0f;
173- p.rideBellPanning = 0.0f;
174- p.rideBellVelocity = 100.0f;
175- p.rideBellMidi = 53.0f;
176176 p.sideStickLevel = 50.0f;
177177 p.sideStickPanning = 0.0f;
178178 p.sideStickVelocity = 100.0f;
@@ -217,6 +217,10 @@ namespace Percupuff
217217 input event float crash1Midi [[ name: "crash1Midi", min: 0, max: 127, init: 49, step: 1 ]];
218218 input event float crash2Midi [[ name: "crash2Midi", min: 0, max: 127, init: 57, step: 1 ]];
219219 input event float crash3Midi [[ name: "crash3Midi", min: 0, max: 127, init: 52, step: 1 ]];
220+ input event float rideBellLevel [[ name: "rideBellLevel", min: 0, max: 100, init: 50, step: 1 ]];
221+ input event float rideBellPanning [[ name: "rideBellPanning", min: -100, max: 100, init: 0, step: 5 ]];
222+ input event float rideBellVelocity [[ name: "rideBellVelocity", min: 0, max: 100, init: 100, step: 1 ]];
223+ input event float rideBellMidi [[ name: "rideBellMidi", min: 0, max: 127, init: 53, step: 1 ]];
220224 input event float bongoLevel [[ name: "bongoLevel", min: 0, max: 100, init: 50, step: 1 ]];
221225 input event float bongoPanning [[ name: "bongoPanning", min: -100, max: 100, init: 0, step: 5 ]];
222226 input event float bongoVelocity [[ name: "bongoVelocity", min: 0, max: 100, init: 100, step: 1 ]];
@@ -256,10 +260,6 @@ namespace Percupuff
256260 input event float cowbellPanning [[ name: "cowbellPanning", min: -100, max: 100, init: 0, step: 5 ]];
257261 input event float cowbellVelocity [[ name: "cowbellVelocity", min: 0, max: 100, init: 100, step: 1 ]];
258262 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 ]];
263263 input event float sideStickLevel [[ name: "sideStickLevel", min: 0, max: 100, init: 50, step: 1 ]];
264264 input event float sideStickPanning [[ name: "sideStickPanning", min: -100, max: 100, init: 0, step: 5 ]];
265265 input event float sideStickVelocity [[ name: "sideStickVelocity", min: 0, max: 100, init: 100, step: 1 ]];
@@ -307,6 +307,10 @@ namespace Percupuff
307307 event crash1Midi (float f) { params.crash1Midi = f; update(); }
308308 event crash2Midi (float f) { params.crash2Midi = f; update(); }
309309 event crash3Midi (float f) { params.crash3Midi = f; update(); }
310+ event rideBellLevel (float f) { params.rideBellLevel = f; update(); }
311+ event rideBellPanning (float f) { params.rideBellPanning = f; update(); }
312+ event rideBellVelocity (float f) { params.rideBellVelocity = f; update(); }
313+ event rideBellMidi (float f) { params.rideBellMidi = f; update(); }
310314 event bongoLevel (float f) { params.bongoLevel = f; update(); }
311315 event bongoPanning (float f) { params.bongoPanning = f; update(); }
312316 event bongoVelocity (float f) { params.bongoVelocity = f; update(); }
@@ -346,10 +350,6 @@ namespace Percupuff
346350 event cowbellPanning (float f) { params.cowbellPanning = f; update(); }
347351 event cowbellVelocity (float f) { params.cowbellVelocity = f; update(); }
348352 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(); }
353353 event sideStickLevel (float f) { params.sideStickLevel = f; update(); }
354354 event sideStickPanning (float f) { params.sideStickPanning = f; update(); }
355355 event sideStickVelocity (float f) { params.sideStickVelocity = f; update(); }
0 commit comments