Load MagicaVoxel Vox file for bevy engine.
| bevy_vox | bevy |
| -------- | ---- |
| 0.3 | 0.5 |
| 0.2 | 0.4 |
Example
```rust
use bevy::prelude::;
use bevy_vox::;
fn main() {
App::build()
.insertresource(Msaa { samples: 4 })
.addplugins(DefaultPlugins)
.addplugin(VoxPlugin)
.addstartup_system(setup.system())
.run();
}
fn setup(mut commands: Commands, assetserver: Res) {
// add entities to the world
commands.spawnscene(assetserver.load("2x2x2.vox"));
commands
// light
.spawnbundle(LightBundle {
transform: Transform::fromtranslation(Vec3::new(4.0, 5.0, 4.0)),
..Default::default()
});
commands
// camera
.spawnbundle(PerspectiveCameraBundle {
transform: Transform::fromtranslation(Vec3::new(6.0, -6.0, 6.0))
.lookingat(Vec3::default(), Vec3::Y),
..Default::default()
});
}
```