This commit is contained in:
NULL511
2024-05-04 00:55:01 -04:00
parent 43fe9e654a
commit 94ad32bd7f
8 changed files with 29 additions and 23 deletions

View File

@ -215,9 +215,12 @@ void main() {
voxelId = uint(currentRenderedItemId);
}
else {
// TODO: set from entityId
if (entityId == ENTITY_SPECTRAL_ARROW)
voxelId = uint(BLOCK_TORCH);
switch (entityId) {
case ENTITY_SPECTRAL_ARROW:
voxelId = uint(BLOCK_TORCH);
break;
// TODO: blaze, magma_cube
}
if (voxelId > 0u)