diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2023-02-15 02:26:06 +0000 |
---|---|---|
committer | Dan Goodliffe <dan.goodliffe@octal.co.uk> | 2023-02-15 11:34:11 +0000 |
commit | 715d4879fdd096ac82367984fdb22117d48737a4 (patch) | |
tree | 576b0553b10795bb51384ba4c47269d4226bdca6 /assetFactory/use.cpp | |
parent | Add OpenMeshCore library (diff) | |
download | ilt-715d4879fdd096ac82367984fdb22117d48737a4.tar.bz2 ilt-715d4879fdd096ac82367984fdb22117d48737a4.tar.xz ilt-715d4879fdd096ac82367984fdb22117d48737a4.zip |
First cut of the model factory and the hardcoded Brush 47 model
Requires temporary change to the fragment shader to hardcode some visible colour to the model
Diffstat (limited to 'assetFactory/use.cpp')
-rw-r--r-- | assetFactory/use.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/assetFactory/use.cpp b/assetFactory/use.cpp new file mode 100644 index 0000000..d191329 --- /dev/null +++ b/assetFactory/use.cpp @@ -0,0 +1,11 @@ +#include "use.h" + +Shape::CreatedFaces +Use::createMesh(ModelFactoryMesh & mesh, const Mutation::Matrix & mutation) const +{ + auto faces = type->createMesh(mesh, mutation * getMatrix()); + for (const auto & [name, faceController] : faceControllers) { + faceController.apply(mesh, name, faces); + } + return faces; +} |