Search Tutorials
Add add buttonSimilarly, the add add button , with shape of ++, will serve to increase more the value of the associated variable; the associated actions will be: for timesmorz: on (release) {
if (timesmorz<1.00) {
// the action comes executed if timesmorz<1
timesmorz = timesmorz+.01;
}
}
for maxangle: on (release) {
maxang = maxang+5;
}
for n_osc: on (release) {
n_osc = n_osc+.1;
}
Sub sub buttonFinally, the sub sub button , with shape of --, will serve to decrease
more the value of the associated variable; the associated actions will be: per timesmorz: on (release) {
if (timesmorz>0.01 ) {
// the action comes executed if timesmorz>0.01
timesmorz = timesmorz-.001;
}
}
per maxangle: on (release) {
maxang = maxang+1;
}
per n_osc: on (release) {
n_osc = n_osc+.01;
}
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
![]() |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|