Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@halby24
Last active October 21, 2022 04:24
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 halby24/5d6d14053840620b4f623d17ef117281 to your computer and use it in GitHub Desktop.
Save halby24/5d6d14053840620b4f623d17ef117281 to your computer and use it in GitHub Desktop.
視界ハック用頂点シェーダーメモ
v2f vert (appdata v)
{
v2f o;
o.uv = v.uv;
o.vertex = float4(v.uv.x * 2 - 1, 1 - v.uv.y * 2, 0, 1);
return o;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment