Skip to content

Commit dd661cd

Browse files
committed
adjust CY8 default trigger parameters and set cymbal pad rim shot boost to 0 dB per default
1 parent cddcc41 commit dd661cd

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

edrumulus_parameters.cpp

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,6 +179,7 @@ void Edrumulus::Pad::apply_preset_pad_settings()
179179
pad_settings.is_rim_switch = true;
180180
pad_settings.velocity_sensitivity = 5;
181181
pad_settings.rim_shot_treshold = 23;
182+
pad_settings.rim_shot_boost = 0;
182183
pad_settings.scan_time_ms = 4.0f;
183184
pad_settings.decay_est_delay_ms = 9.0f;
184185
pad_settings.decay_fact_db = 5.0f;
@@ -243,6 +244,7 @@ void Edrumulus::Pad::apply_preset_pad_settings()
243244
pad_settings.velocity_threshold = 6;
244245
pad_settings.velocity_sensitivity = 4;
245246
pad_settings.rim_shot_treshold = 12;
247+
pad_settings.rim_shot_boost = 0;
246248
pad_settings.scan_time_ms = 3.0f;
247249
pad_settings.mask_time_ms = 8.0f;
248250
pad_settings.decay_fact_db = 3.0f;
@@ -253,6 +255,7 @@ void Edrumulus::Pad::apply_preset_pad_settings()
253255
pad_settings.is_rim_switch = true;
254256
pad_settings.velocity_sensitivity = 6;
255257
pad_settings.rim_shot_treshold = 12;
258+
pad_settings.rim_shot_boost = 0;
256259
pad_settings.scan_time_ms = 6.0f;
257260
pad_settings.decay_len2_ms = 150.0f;
258261
pad_settings.decay_grad_fact2 = 120.0f;
@@ -263,9 +266,10 @@ void Edrumulus::Pad::apply_preset_pad_settings()
263266

264267
case CY8: // dual trigger
265268
pad_settings.is_rim_switch = true;
266-
pad_settings.velocity_threshold = 13;
269+
pad_settings.velocity_threshold = 7;
267270
pad_settings.velocity_sensitivity = 8;
268-
pad_settings.rim_shot_treshold = 12;
271+
pad_settings.rim_shot_treshold = 10;
272+
pad_settings.rim_shot_boost = 0;
269273
pad_settings.curve_type = LOG2;
270274
pad_settings.scan_time_ms = 6.0f;
271275
pad_settings.decay_len1_ms = 10.0f;

0 commit comments

Comments
 (0)