chunk model refresh fix

This commit is contained in:
MihailRis
2024-02-18 22:28:00 +03:00
parent 8341485aef
commit 853ee0fc6f
2 changed files with 7 additions and 2 deletions
+4
View File
@@ -22,6 +22,10 @@ struct voxel {
inline uint8_t rotation() const {
return states & BLOCK_ROT_MASK;
}
inline void setRotation(uint8_t rotation) {
states = (states & (~BLOCK_ROT_MASK)) | rotation & BLOCK_ROT_MASK;
}
};
#endif /* VOXELS_VOXEL_H_ */