diff options
Diffstat (limited to 'assetFactory/textureFragment.cpp')
-rw-r--r-- | assetFactory/textureFragment.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/assetFactory/textureFragment.cpp b/assetFactory/textureFragment.cpp index 72107a5..d153688 100644 --- a/assetFactory/textureFragment.cpp +++ b/assetFactory/textureFragment.cpp @@ -1,7 +1,15 @@ #include "textureFragment.h" +#include "resource.h" +#include <stb/stb_image.h> bool TextureFragment::persist(Persistence::PersistenceStore & store) { return STORE_TYPE && STORE_MEMBER(id) && STORE_MEMBER(path); } + +void +TextureFragment::postLoad() +{ + image = std::make_unique<Image>(Resource::mapPath(path), STBI_rgb_alpha); +} |