Updated Vertex struct

Signed-off-by: Robear Selwans <robear.selwans@outlook.com>
This commit is contained in:
2021-07-01 22:49:47 +02:00
parent 574eb3590e
commit 33a7d5173e

View File

@@ -7,10 +7,11 @@
#include "MeshLoader.h"
typedef struct {
Vec4 pos;
Vec4 nor;
Vec4 col;
Vec4 position;
Vec4 normal;
Vec4 uv;
Vec4 tangent;
Vec4 bitangent;
} Vertex;
MeshAsset