Welcome to Decent Sampler Q&A, where you can ask questions and receive answers from other members of the community.
0 votes
Hi, it seems to me that one cannot apply a loVel nor a hiVel value to a Sample that's supposed to be in Trigger="release" -Mode. Can anyone confirm this or am I just really bad at scripting mxl files?

my Code looks something like this:

<sample rootNote="60" loNote="60" hiNote="60" loVel="1" hiVel="90" ampVelTrack="0" seqPosition="1" trigger="release" tags="offSound" path="sample_60.wav"/>

<sample rootNote="60" loNote="60" hiNote="60" loVel="1" hiVel="90" ampVelTrack="0" seqPosition="2" trigger="release" tags="offSound" path="sample_60.wav"/>

<sample rootNote="60" loNote="60" hiNote="60" loVel="1" hiVel="90" ampVelTrack="0" seqPosition="3" trigger="release" tags="offSound" path="sample_60.wav"/>

I can control the volume of the off samples with a knob that's binded via the tags="offSound" and I also got a volume knob for the onSound Samples but I hear nothing if i turn the onSound down and the offSound up. Does anyone got am idea how to fix my issue?
in Sample Creation by

1 Answer

0 votes
In the code you posted, you basically use the exact same sample 3 times with the exact same settings (note and velocity) except for the seqPosition attribute used to set round-robins - so you won't be able to hear any difference.
In any case, you should have a different sample each time.
Also, you disabled the velocity tracking with ampVelTrack="0", so you should remove that.
What are you trying to achieve exactly?
by michel-pecqueur (2.0k points)
...