SimonJ

[Gmod][E2]Colour changing light Ver2

Apr 27th, 2016
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. @name Colour_Cycling 2
  2. @inputs Toggle
  3. @outputs Out:vector
  4. @persist N
  5. @trigger all
  6. interval(20)
  7. if (Toggle == 0) {Out=vec()}
  8. if (Toggle == 1)
  9. {
  10. N++,
  11. if(N==361){N=1}
  12. ,Out=hsv2rgb(N,1,1)
  13. }
Advertisement
Add Comment
Please, Sign In to add comment