mirror of
https://github.com/X0nk/Bliss-Shader.git
synced 2024-12-23 01:59:39 +08:00
yet another voxel fix
This commit is contained in:
parent
19cecb224e
commit
4c68e36365
@ -11,13 +11,15 @@ void SetVoxelBlock(const in vec3 playerPos, const in uint blockId) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void PopulateShadowVoxel(const in vec3 playerPos) {
|
void PopulateShadowVoxel(const in vec3 playerPos) {
|
||||||
uint voxelId = uint(mc_Entity.x + 0.5);
|
uint voxelId = 0u;
|
||||||
vec3 originPos = playerPos;
|
vec3 originPos = playerPos;
|
||||||
|
|
||||||
if (
|
if (
|
||||||
renderStage == MC_RENDER_STAGE_TERRAIN_SOLID || renderStage == MC_RENDER_STAGE_TERRAIN_TRANSLUCENT ||
|
renderStage == MC_RENDER_STAGE_TERRAIN_SOLID || renderStage == MC_RENDER_STAGE_TERRAIN_TRANSLUCENT ||
|
||||||
renderStage == MC_RENDER_STAGE_TERRAIN_CUTOUT || renderStage == MC_RENDER_STAGE_TERRAIN_CUTOUT_MIPPED
|
renderStage == MC_RENDER_STAGE_TERRAIN_CUTOUT || renderStage == MC_RENDER_STAGE_TERRAIN_CUTOUT_MIPPED
|
||||||
) {
|
) {
|
||||||
|
voxelId = uint(mc_Entity.x + 0.5);
|
||||||
|
|
||||||
#ifdef IRIS_FEATURE_BLOCK_EMISSION_ATTRIBUTE
|
#ifdef IRIS_FEATURE_BLOCK_EMISSION_ATTRIBUTE
|
||||||
if (voxelId == 0u && at_midBlock.w > 0) voxelId = uint(BLOCK_LIGHT_1 + at_midBlock.w - 1);
|
if (voxelId == 0u && at_midBlock.w > 0) voxelId = uint(BLOCK_LIGHT_1 + at_midBlock.w - 1);
|
||||||
#endif
|
#endif
|
||||||
@ -31,11 +33,13 @@ void PopulateShadowVoxel(const in vec3 playerPos) {
|
|||||||
if (
|
if (
|
||||||
((renderStage == MC_RENDER_STAGE_ENTITIES && (currentRenderedItemId > 0 || entityId > 0)) || renderStage == MC_RENDER_STAGE_BLOCK_ENTITIES)
|
((renderStage == MC_RENDER_STAGE_ENTITIES && (currentRenderedItemId > 0 || entityId > 0)) || renderStage == MC_RENDER_STAGE_BLOCK_ENTITIES)
|
||||||
) {
|
) {
|
||||||
|
voxelId = uint(mc_Entity.x + 0.5);
|
||||||
|
|
||||||
if (renderStage == MC_RENDER_STAGE_BLOCK_ENTITIES) {
|
if (renderStage == MC_RENDER_STAGE_BLOCK_ENTITIES) {
|
||||||
if (blockEntityId > 0 && blockEntityId < 500)
|
if (blockEntityId > 0 && blockEntityId < 500)
|
||||||
voxelId = uint(blockEntityId);
|
voxelId = uint(blockEntityId);
|
||||||
}
|
}
|
||||||
else if (currentRenderedItemId > 0 && currentRenderedItemId < 1000) {
|
else if (currentRenderedItemId > 0 && currentRenderedItemId < 1200) {
|
||||||
if (entityId != ENTITY_ITEM_FRAME && entityId != ENTITY_PLAYER)
|
if (entityId != ENTITY_ITEM_FRAME && entityId != ENTITY_PLAYER)
|
||||||
voxelId = uint(currentRenderedItemId);
|
voxelId = uint(currentRenderedItemId);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user