feat: item models generation simple & remove core:item_models

This commit is contained in:
MihailRis
2024-10-26 18:42:21 +03:00
parent 7a5fe3b2b0
commit fae372d19f
16 changed files with 136 additions and 63 deletions
+2 -1
View File
@@ -4,6 +4,7 @@
#include <optional>
#include <string>
#include <vector>
#include <array>
#include "maths/UVRegion.hpp"
#include "maths/aabb.hpp"
@@ -111,7 +112,7 @@ public:
std::string caption;
/// @brief Textures set applied to block sides
std::string textureFaces[6]; // -x,x, -y,y, -z,z
std::array<std::string, 6> textureFaces; // -x,x, -y,y, -z,z
std::vector<std::string> modelTextures = {};
std::vector<BoxModel> modelBoxes = {};