remove unused fluid chunk function
All checks were successful
studiorailgun/Renderer/pipeline/head This commit looks good

This commit is contained in:
austin 2024-09-04 20:16:07 -04:00
parent 4be41f1b04
commit 89f2d9c60a

View File

@ -57,14 +57,4 @@ public class FluidChunkData {
return voxelWeight[x][y][z];
}
/**
* Gets a key for the modifiedSinceLastGeneration set based on a voxel position
* @param position The voxel position
* @return The key
*/
private String getVoxelPositionKey(Vector3i position){
return position.x + "_" + position.y + "_" + position.z;
}
}