Separate names with a comma.
The default group volume (0 db) is around 630000. You could use: set_engine_par($ENGINE_PAR_VOLUME, 630000-$revknob, $adsr_count, $revknob_idx,...
Thank you ED! Makes sense x)
Hey guys, when I'm using the lines set_control_par(get_ui_id(%table), $CONTROL_PAR_HIDE, $HIDE_PART_VALUE) set_control_par(get_ui_id(%table),...
You could store your last played Note in a variable like $last_note and then allow your desired group whether your new played $EVENT_NOTE is lower...
change the -1 in the second play_note to desired length. -1 means, it will stop by release trigger on note ignore_event(EVENT_ID)...
Hey Eric, thanks for your reply! I intentionally avoided working with NOTE_HELD to be able to work with the sustain pedal and holding the pattern...
Hey Guys, so I managed to implement a release for a simple seq/arp/pattern... What works: If you press a key, the pattern starts. When you...
ah yeah right forgot to mention that, thanks. For example change 0 to desired length, or something like my_id := play_note(...) and then wait...
just change the code to: on note ignore_event( $EVENT_ID ) play_note(12, $EVENT_VELOCITY, 0, 1000000) wait(500000) play_note(...
You should take a look in the ksp manual here...
So to sum it up: You need a master cutoff for your instrument (in your case: all groups except your first one). You can't route all of your...
So that works for me! I implemented kind of an arpeggiator using listener in one script slot and I'm doing the animation with listener in another...
Well that works, you actually did that. But yeah could be easier to manage when it comes to work with persistent etc. But like I said I'm not...
First of all: make_persistent does work for your volume knob.(EDIT: of course in terms of the value, not the visibility) Not sure if it works for...
What do you mean? What is your goal?
Well that should actually work. Try replacing the 2 in find_mod by $group_counter and make sure your LFO names really LFO_RAND. Sometimes it...
You added a comma after abs in the first purge line, that causes the error. Fixed: on ui_control ($keys_switch)...
Ah ok! Then you should check out this thread:...
This code should work for you: on init declare ui_button $group1 declare ui_button $group2 declare ui_button $all_groups...
Then just route group 3 to 10 to bus 1. Code stays of course the same.