Merge pull request #267 from Azaezel/alpha40_ribbonFix

ribbon shader variable order fix from @steve_yorkshire
This commit is contained in:
Brian Roberts 2020-08-03 14:04:36 -05:00 committed by GitHub
commit d9649025f5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5,8 +5,8 @@
struct a2v
{
float3 position : POSITION;
float3 normal : NORMAL;
float4 color : COLOR0;
float3 normal : NORMAL;
float2 texCoord : TEXCOORD0;
float2 shiftdata : TEXCOORD1;
};