Load MagicaVoxel Vox file for bevy engine.

| bevy_vox | bevy | | -------- | ----- | | 0.7 | 0.10 | | 0.6 | 0.9 | | 0.5 | 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) { // add entities to the world commands.spawn(SceneBundle { scene: assetserver.load("2x2x2.vox"), transform: Transform::from_xyz(0.0, 0.0, 0.0), ..default() });

// light
commands.spawn(PointLightBundle {
    transform: Transform::from_xyz(3.0, 1.2, 2.5),
    ..Default::default()
});

// camera
commands.spawn(Camera3dBundle {
    transform: Transform::from_xyz(6.0, -6.0, 6.0).looking_at(Vec3::ZERO, Vec3::Y),
    ..Default::default()
});

} ```