Compare commits
2 Commits
| Author | SHA1 | Date |
|---|---|---|
|
|
ad101c3f54 | |
|
|
9340b61ce3 |
|
|
@ -9,6 +9,7 @@ namespace RBX
|
||||||
{
|
{
|
||||||
std::vector<FileMeshVertexNormalTexture3d> vnts;
|
std::vector<FileMeshVertexNormalTexture3d> vnts;
|
||||||
std::vector<FileMeshFace> faces;
|
std::vector<FileMeshFace> faces;
|
||||||
|
// G3D::AABox aabb;
|
||||||
};
|
};
|
||||||
|
|
||||||
void writeFileMesh(std::ostream&, const FileMeshData&);
|
void writeFileMesh(std::ostream&, const FileMeshData&);
|
||||||
|
|
|
||||||
|
|
@ -17,7 +17,7 @@ namespace RBX
|
||||||
float vx, vy, vz;
|
float vx, vy, vz;
|
||||||
float nx, ny, nz;
|
float nx, ny, nz;
|
||||||
float tu, tv, tw;
|
float tu, tv, tw;
|
||||||
char r, g, b, a;
|
// char r, g, b, a;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct FileMeshFace
|
struct FileMeshFace
|
||||||
|
|
|
||||||
Binary file not shown.
Binary file not shown.
|
|
@ -1,6 +1,8 @@
|
||||||
# RBXMeshConverter
|
# RBXMeshConverter
|
||||||
Convert a wavefront OBJ to RBX mesh V2
|
Convert a wavefront OBJ to RBX mesh V2
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
## Credits
|
## Credits
|
||||||
[OBJ-Loader](https://github.com/Bly7/OBJ-Loader)
|
[OBJ-Loader](https://github.com/Bly7/OBJ-Loader)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue