Load MagicaVoxel Vox file for bevy engine.
sync bevy version start by 0.8. make version like
0.8.1.xxx
forbevy 0.8.1
| bevy_vox | bevy | | -------- | ---- | | 0.8 | 0.8 | | 0.4 | 0.6 | | 0.3 | 0.5 | | 0.2 | 0.4 |
Example
```rust use bevy::prelude::*; use bevy_vox::VoxPlugin;
fn main() { App::new() .insertresource(Msaa { samples: 4 }) .addplugins(DefaultPlugins) .insertresource(AmbientLight { color: Color::WHITE, brightness: 0.5, }) .addplugin(VoxPlugin::default()) .addstartupsystem(setup) .run(); }
fn setup(mut commands: Commands, assetserver: Res
// light
commands.spawn_bundle(PointLightBundle {
transform: Transform::from_xyz(3.0, 1.2, 2.5),
..Default::default()
});
// camera
commands.spawn_bundle(Camera3dBundle {
transform: Transform::from_xyz(6.0, -6.0, 6.0).looking_at(Vec3::ZERO, Vec3::Y),
..Default::default()
});
} ```