diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2023-04-14 18:03:34 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2023-04-14 18:03:34 +0100 |
commit | 5776a36b454fac04617313da011d7aa2b0e834d3 (patch) | |
tree | 1eb96d07e9a17a51e5763f397fc003f762cd2e75 /game/scenary/foliage.h | |
parent | Merge branch 'model-factory-textures' (diff) | |
parent | Add an asset template and use it to define all the foliage assets in the plan... (diff) | |
download | ilt-5776a36b454fac04617313da011d7aa2b0e834d3.tar.bz2 ilt-5776a36b454fac04617313da011d7aa2b0e834d3.tar.xz ilt-5776a36b454fac04617313da011d7aa2b0e834d3.zip |
Merge branch 'assimp'
Diffstat (limited to 'game/scenary/foliage.h')
-rw-r--r-- | game/scenary/foliage.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/game/scenary/foliage.h b/game/scenary/foliage.h new file mode 100644 index 0000000..b85aab2 --- /dev/null +++ b/game/scenary/foliage.h @@ -0,0 +1,22 @@ +#pragma once + +#include "assetFactory/asset.h" + +class SceneShader; +class ShadowMapper; +class Location; +class Texture; + +class Foliage : public Asset, public StdTypeDefs<Foliage> { + Mesh::Ptr bodyMesh; + std::shared_ptr<Texture> texture; + +public: + void render(const SceneShader &, const Location &) const; + void shadows(const ShadowMapper &, const Location &) const; + +protected: + friend Persistence::SelectionPtrBase<std::shared_ptr<Foliage>>; + bool persist(Persistence::PersistenceStore & store) override; + void postLoad() override; +}; |