Guest User

Untitled

a guest
May 20th, 2018
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. shader vecClamp (vector Vector = 0.5, vector Min = 0.0, vector Max = 1.0, output vector Clamped = 0.5) {
  2. Clamped = clamp(Vector, Min, Max);
  3. }
Add Comment
Please, Sign In to add comment