What's new

PGS Changed Issue

jdawg

Active Member
Hi, so i have an issue with mono release triggers being made.

I have just mentioned a few of the major things going on below.

My issue is, it works if i call the pgs on the ON NOTE instead of the RELEASE, but then it breaks other things, so I really need it set this current way. Is it possible to have different pgs changed call backs?

thanking you

on pgs_changed
$Round_Robin_Count := $Round_Robin_Count+1
end on

on note
_reset_rls_trig_counter($EVENT_NOTE)
$Art_SEQ_buffer := 0
end on

on release
if($Art_SEQ_buffer >= 1)
exit
else
pgs_set_key_val(FIRST_KEY, 0, 1)
end if
$Art_SEQ_buffer := $Art_SEQ_buffer+1

if($Round_Robin_Count = 2)
$Round_Robin_Count := 0
end if

{A BUNCH OF STUFF TO ALLOW EACH GROUP}
end on
 
WHOOO thanks for pointing that out, I hadnt thought of another way, now I have, and it seems to be the "exit" which was causing issue so i moved that portion to the end of everything as to not stop reading before the rel triggers had played, thanking you for pointing that out
 
Top Bottom