diff options
author | LaG1924 <12997935+LaG1924@users.noreply.github.com> | 2018-08-09 10:33:12 +0200 |
---|---|---|
committer | LaG1924 <12997935+LaG1924@users.noreply.github.com> | 2018-08-09 10:33:12 +0200 |
commit | fd63f251c53ce15fd2e70efe97abca2f8316461d (patch) | |
tree | 12331296f1550b8cbc21d85b2d4593d509818625 /src | |
parent | More BlockStates (diff) | |
download | AltCraft-fd63f251c53ce15fd2e70efe97abca2f8316461d.tar AltCraft-fd63f251c53ce15fd2e70efe97abca2f8316461d.tar.gz AltCraft-fd63f251c53ce15fd2e70efe97abca2f8316461d.tar.bz2 AltCraft-fd63f251c53ce15fd2e70efe97abca2f8316461d.tar.lz AltCraft-fd63f251c53ce15fd2e70efe97abca2f8316461d.tar.xz AltCraft-fd63f251c53ce15fd2e70efe97abca2f8316461d.tar.zst AltCraft-fd63f251c53ce15fd2e70efe97abca2f8316461d.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/AssetManager.cpp | 4 | ||||
-rw-r--r-- | src/Block.cpp | 8 |
2 files changed, 12 insertions, 0 deletions
diff --git a/src/AssetManager.cpp b/src/AssetManager.cpp index 97833f5..5fa7990 100644 --- a/src/AssetManager.cpp +++ b/src/AssetManager.cpp @@ -455,6 +455,10 @@ void ParseBlockModels() { } textureName.insert(0, "minecraft/textures/"); texture = AssetManager::GetTexture(textureName); + if (textureName.find("water_flow") != std::string::npos) + texture.h /= 32.0f; + if (textureName.find("lava_flow") != std::string::npos) + texture.h /= 16.0f; if (!(face.second.uv == BlockModel::ElementData::FaceData::Uv{ 0,16,0,16 }) && !(face.second.uv == BlockModel::ElementData::FaceData::Uv{ 0,0,0,0 }) && !(face.second.uv == BlockModel::ElementData::FaceData::Uv{ 0,0,16,16 })) { diff --git a/src/Block.cpp b/src/Block.cpp index 6756960..3de1901 100644 --- a/src/Block.cpp +++ b/src/Block.cpp @@ -44,6 +44,14 @@ std::pair<std::string, std::string> TransformBlockIdToBlockStateName(BlockId blo }; return ids[blockId.state]; } + case 8: + case 9: { + return std::make_pair("water", "normal"); + } + case 10: + case 11: { + return std::make_pair("lava", "normal"); + } case 12: { if (blockId.state > 1) break; |