Could anyone tell me what the variables are for the current rotation? I read the manual and saw how to set it to a specific number, but I’d like to make a script that rotates it an addition 15 degrees each time it receives a message or something.
After looking at the sticky and understanding it a bit more clearly, I was able to solve my own question by creating a global variable.
var rotation = 0;
//If a message is received
function onMessage(protocol, host, port, destination, values) {
//Message reception
if((protocol == 'midi') && (values[1] == 56)) { //rotates right
rotation += 15;
run('rotate 0 0 ' + rotation);
}
if((protocol == 'midi') && (values[1] == 57)) { //rotates left
rotation += 15;
run('rotate 0 0 ' + rotation);
}
}
Cookie | Duration | Description |
---|---|---|
cookielawinfo-checkbox-analytics | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Analytics". |
cookielawinfo-checkbox-functional | 11 months | The cookie is set by GDPR cookie consent to record the user consent for the cookies in the category "Functional". |
cookielawinfo-checkbox-necessary | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookies is used to store the user consent for the cookies in the category "Necessary". |
cookielawinfo-checkbox-others | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Other. |
cookielawinfo-checkbox-performance | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Performance". |
viewed_cookie_policy | 11 months | The cookie is set by the GDPR Cookie Consent plugin and is used to store whether or not user has consented to the use of cookies. It does not store any personal data. |