-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issue with rendering NestedVoxels #14
Comments
Hmm, that's kind of the whole point of the crate, so it should work. What systems/rendering bundles do you have registered? |
.with_bundle(
VoxelBundle::new(10)
.with_source::<ChunkData, TestVoxelSource>()
.with_voxel::<DefaultBackend, ChunkData>(),
)?
.with_bundle(
RenderingBundle::<DefaultBackend>::new()
.with_plugin(
RenderToWindow::from_config_path(display_config_path)?
.with_clear([0.0, 0.0, 0.0, 1.0]),
)
.with_plugin(RenderVoxelPbr::default())
.with_plugin(RenderSkybox::with_colors(
Srgb::new(0., 1., 0.),
Srgb::new(0., 0., 1.),
)),
)?; I also have a FlyControlBundle to look around. |
Hello? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi!
I spent a long time tinkering and got rendering
NestedVoxel::Material
working, after that I moved on to gettingNestedVoxel::Detail
working as chunks, but I can't seem to get it working. I've tried bothSimpleVoxel
's andNestedVoxel
's as child voxels. I've tried contructing the struct both manually and usingNextedVoxel::from_iter
, but I can't get anything working. Is the subvoxel rendering not complete?The text was updated successfully, but these errors were encountered: