Skip to content

Instantly share code, notes, and snippets.

@behreajj
Last active November 10, 2021 03:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save behreajj/2492ace45110641898a2fb7115f0a5ad to your computer and use it in GitHub Desktop.
Save behreajj/2492ace45110641898a2fb7115f0a5ad to your computer and use it in GitHub Desktop.
HSV Gray
static float GrayHsv (in Color c)
{
return Mathf.Max (c.r, c.g, c.b);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment