Is there anyway we can get more than 20 Modifiers?

21 viewsCSS Questionsmodifiers
0
0 Comments

^^
At risk of repeating myself…..is there anyway we can get more the 20 modifiers? I need 24 but would like to have some spare too

JohnC Answered question March 28, 2025
0

You would need to add them directly in the script json file which are stored on your computer in: home directory > control surface studio 2.8 > script
There’s an array of objects called ‘modifiers’. Each object defines a modifier.

You can add as many as you like to this, just make sure to update the ‘id’, ‘name’ and ‘tokenisedCode’ to use i.e. m21, m22, m23 etc
Save the file, then login back into CSS.

{
                "id": "m21",
                "name": "m21",
                "tokenisedCode": "self.get_modifier_value(\"m21\")",
                "initialValue": 0,
                "cat": "modifier",
                "valueType": "all"
            },

R. Posted new comment April 1, 2025

FYI you can call the modifiers whatever you like, they don’t have to be ‘m21’, ‘m22’…

this is legendary info – can’t wait to put this to good use