mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 18:13:05 +02:00
Add warning to AssetServer.h to update bake version in .cpp
This commit is contained in:
parent
9a7497c9ec
commit
df8a25cbdc
1 changed files with 4 additions and 0 deletions
|
@ -45,14 +45,18 @@ enum BakedAssetType : int {
|
||||||
Undefined
|
Undefined
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// ATTENTION! If you change the current version for an asset type, you will also
|
||||||
|
// need to update the function currentBakeVersionForAssetType() inside of AssetServer.cpp.
|
||||||
enum class ModelBakeVersion : BakeVersion {
|
enum class ModelBakeVersion : BakeVersion {
|
||||||
Initial = INITIAL_BAKE_VERSION
|
Initial = INITIAL_BAKE_VERSION
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// ATTENTION! See above.
|
||||||
enum class TextureBakeVersion : BakeVersion {
|
enum class TextureBakeVersion : BakeVersion {
|
||||||
Initial = INITIAL_BAKE_VERSION,
|
Initial = INITIAL_BAKE_VERSION,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// ATTENTION! See above.
|
||||||
enum class ScriptBakeVersion : BakeVersion {
|
enum class ScriptBakeVersion : BakeVersion {
|
||||||
Initial = INITIAL_BAKE_VERSION,
|
Initial = INITIAL_BAKE_VERSION,
|
||||||
FixEmptyScripts,
|
FixEmptyScripts,
|
||||||
|
|
Loading…
Reference in a new issue