Revert brickmap sphere colour changes
This commit is contained in:
parent
b857b5a157
commit
b51f0b42e2
|
@ -80,9 +80,9 @@ impl VoxelRenderer {
|
||||||
if (pos - sphere_center).length_squared() <= sphere_r2 {
|
if (pos - sphere_center).length_squared() <= sphere_r2 {
|
||||||
entry += 1 << idx;
|
entry += 1 << idx;
|
||||||
let mut albedo = 0u32;
|
let mut albedo = 0u32;
|
||||||
albedo += ((chunk_pos.x + 1) * 8 - 1) << 24;
|
albedo += ((x + 1) * 32 - 1) << 24;
|
||||||
albedo += ((chunk_pos.y + 1) * 8 - 1) << 16;
|
albedo += ((y + 1) * 32 - 1) << 16;
|
||||||
albedo += ((chunk_pos.z + 1) * 8 - 1) << 8;
|
albedo += ((z + 1) * 32 - 1) << 8;
|
||||||
albedo += 255;
|
albedo += 255;
|
||||||
albedo_data.push(albedo);
|
albedo_data.push(albedo);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue