mirror of
https://github.com/minetest/irrlicht.git
synced 2025-06-30 23:30:27 +02:00
Update vertex test for coordinate system
This is also the first working version of the mesh. I successfully loaded it in Minetest.
This commit is contained in:
@ -7,8 +7,11 @@
|
||||
#include "path.h"
|
||||
#include "S3DVertex.h"
|
||||
#include "SAnimatedMesh.h"
|
||||
#include "SColor.h"
|
||||
#include "SMesh.h"
|
||||
|
||||
#include <iostream>
|
||||
|
||||
namespace irr
|
||||
{
|
||||
|
||||
@ -35,10 +38,10 @@ IAnimatedMesh* CGLTFMeshFileLoader::createMesh(io::IReadFile* file)
|
||||
SMeshBuffer* meshbuf { new SMeshBuffer {} };
|
||||
|
||||
const video::S3DVertex* vertices { new video::S3DVertex[3] {
|
||||
{0.0f, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f, {}, 0.0f, 0.0f},
|
||||
{1.0f, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f, {}, 0.0f, 0.0f},
|
||||
{1.0f, 1.0f, 0.0f, 0.0f, 0.0f, 0.0f, {}, 0.0f, 0.0f} } };
|
||||
const u16* indices { new u16[3] {} };
|
||||
{{0.0f, 0.0f, 0.0f}, {0.0f, 0.0f, 1.0f}, {}, {0.0f, 0.0f}},
|
||||
{{0.0f, 1.0f, 0.0f}, {0.0f, 0.0f, 1.0f}, {}, {1.0f, 0.0f}},
|
||||
{{-1.0f, 0.0f, 0.0f}, {0.0f, 0.0f, 1.0f}, {}, {0.0f, 1.0f}} } };
|
||||
const u16* indices { new u16[3] {0, 1, 2} };
|
||||
meshbuf->append(vertices, 3, indices, 3);
|
||||
|
||||
SMesh* mesh { new SMesh {} };
|
||||
|
Reference in New Issue
Block a user