Firebase Update

This commit is contained in:
Lukas Nowy
2018-12-22 23:30:39 +01:00
parent befb44764d
commit acffe619b3
11523 changed files with 1614327 additions and 930246 deletions

View File

@ -0,0 +1,19 @@
message IMeshImp {
}
message Mesh {
optional IMeshImp _meshImp = 1;
repeated float3 _vertices = 2;
repeated uint32 _colors = 3;
repeated float3 _normals = 4;
repeated float2 _uvs = 5;
repeated int32 _triangles = 6;
}
message float2 {
optional float x = 1 [default = 0];
optional float y = 2 [default = 0];
}
message float3 {
optional float x = 1 [default = 0];
optional float y = 2 [default = 0];
optional float z = 3 [default = 0];
}