KSP MULTIPLE WAVEFORMS FOR MULTIPLE GROUPS

Options
sirserzio
sirserzio Member Posts: 1 Newcomer

Hey guys!

I'm struggling to create 3 waveforms on init for 3 groups, but whatever i try it just won't work. I'm guessing there is a simple solution but i can't wrap my head around it because i'm still a noob and learning.

I had an idea to declare a key number via $EVENT_NOTE and assign the same to a group and then to the attach_zone. Am i on the right track here? Also do i have to have callbacks, since i still only want to get the waveform to show on init from one sample (eg from C3) per group.


on init

declare $C3key := 60

attach_zone($waveform1,get_group_par(0, $C3key),0)

attach_zone($waveform2,get_group_par(1, $C3key),0)

attach_zone($waveform3,get_group_par(2, $C3key),0)

end on

Back To Top