Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- @name Colour_Cycling 2
- @inputs Toggle
- @outputs Out:vector
- @persist N
- @trigger all
- interval(20)
- if (Toggle == 0) {Out=vec()}
- if (Toggle == 1)
- {
- N++,
- if(N==361){N=1}
- ,Out=hsv2rgb(N,1,1)
- }
Advertisement
Add Comment
Please, Sign In to add comment