pub trait Voxel {
    fn get_visibility(&self) -> VoxelVisibility;
}
Expand description

Implement on your voxel types to inform the library how to generate geometry for this voxel.

Required Methods

Implementors