Forked from renaudbedard/gist:7a90ec4a5a7359712202
Created
November 22, 2018 11:39
-
-
Save BattleAngelAlita/b27252674288cf5403086425f45af215 to your computer and use it in GitHub Desktop.
Billboarding for Unity surface shaders
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void vert(inout appdata_full v, out Input o) | |
{ | |
UNITY_INITIALIZE_OUTPUT(Input, o); | |
// get the camera basis vectors | |
float3 forward = -normalize(UNITY_MATRIX_V._m20_m21_m22); | |
float3 up = float3(0, 1, 0); //normalize(UNITY_MATRIX_V._m10_m11_m12); | |
float3 right = normalize(UNITY_MATRIX_V._m00_m01_m02); | |
// rotate to face camera | |
float4x4 rotationMatrix = float4x4(right, 0, | |
up, 0, | |
forward, 0, | |
0, 0, 0, 1); | |
//float offset = _Object2World._m22 / 2; | |
float offset = 0; | |
v.vertex = mul(v.vertex + float4(0, offset, 0, 0), rotationMatrix) + float4(0, -offset, 0, 0); | |
v.normal = mul(v.normal, rotationMatrix); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment