Welcome to Decent Sampler Q&A, where you can ask questions and receive answers from other members of the community.
+1 vote
Hey David,
I'm so thankful for your work for the community. I'm a music teacher and Decent Sampler allows me to bring Scoring for Film to the kids without having to buy expensive licenses for the school.
I'm currently sampling an old church organ and was wondering if there is any way of recreating the organ stops on the ui? I only want to have it on or off, no blending between the stops. Is this currently possible? Using integer instead of float? Or is there a way of changing the steps the Knob does?
Thanks very much
Jonas
in Sample Creation by

1 Answer

0 votes

Right now, there's now way to set it to integer, although that was of course my original intent. You could, however use drop-down menus to make an ON/OFF switch. Here is an example of a drop-down menu that switches between two groups:

<menu x="10" y="40"  width="120" height="30" requireSelection="true" placeholderText="Choose..." value="2">
    <option name="Menu Option 1">
        <!-- Turn on this group -->
        <binding type="general" level="group" position="0" parameter="ENABLED" translation="fixed_value" translationValue="true" />
        <!-- Turn off this group -->
        <binding type="general" level="group" position="1" parameter="ENABLED" translation="fixed_value" translationValue="false" />
    </option>
    <option name="Menu Option 2">
        <!-- Turn off this group -->
        <binding type="general" level="group" position="0" parameter="ENABLED" translation="fixed_value" translationValue="false" />
        <!-- Turn on this group -->
        <binding type="general" level="group" position="1" parameter="ENABLED" translation="fixed_value" translationValue="true" />
    </option>
  </menu>
by decentsamples (5.6k points)
...