diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2023-02-21 19:34:16 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2023-02-21 19:34:16 +0000 |
commit | 5e561d390dc82b08c20532de0952f428e7b14283 (patch) | |
tree | 5f213d4eb741e451b913884b6f302470e7b2fc74 /assetFactory/use.cpp | |
parent | Support for loading objects, uses and model factories from an XML resource (diff) | |
download | ilt-5e561d390dc82b08c20532de0952f428e7b14283.tar.bz2 ilt-5e561d390dc82b08c20532de0952f428e7b14283.tar.xz ilt-5e561d390dc82b08c20532de0952f428e7b14283.zip |
Rename ModelFactory to AssetFactory
Diffstat (limited to 'assetFactory/use.cpp')
-rw-r--r-- | assetFactory/use.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/assetFactory/use.cpp b/assetFactory/use.cpp index 21e26f3..3b574c3 100644 --- a/assetFactory/use.cpp +++ b/assetFactory/use.cpp @@ -1,5 +1,5 @@ #include "use.h" -#include "modelFactory.h" +#include "assetFactory.h" Shape::CreatedFaces Use::createMesh(ModelFactoryMesh & mesh, const Mutation::Matrix & mutation) const @@ -17,7 +17,7 @@ struct Lookup : public Persistence::SelectionV<Shape::CPtr> { void setValue(std::string && str) override { - if (auto mf = std::dynamic_pointer_cast<const ModelFactory>(Persistence::sharedObjects.at("modelFactory"))) { + if (auto mf = std::dynamic_pointer_cast<const AssetFactory>(Persistence::sharedObjects.at("assetFactory"))) { v = mf->shapes.at(str); } } |