bevy_vox_mesh
A plugin for the bevy engine which allows loading magica voxel .vox
files directly into usable meshes. This uses mesh vertex coloring.
| Bevy version | Plugin version | | ------------ | -------------- | | 0.5 | 0.1, 0.2 | | 0.8 | 0.4 | | 0.9 | 0.5 | | 0.10 | 0.6 | | 0.11 | 0.7 |
```rust
use bevy::prelude::*; use bevyvoxmesh::VoxMeshPlugin; use std::f32::consts::PI;
fn main() { App::default() .addplugins(DefaultPlugins) .addplugin(VoxMeshPlugin::default()) .addstartupsystem(setup) .run(); }
fn setup(
mut commands: Commands,
mut meshes: ResMut
commands.spawn(PbrBundle {
transform: Transform::from_scale((0.01, 0.01, 0.01).into())
* Transform::from_rotation(Quat::from_axis_angle(Vec3::Y, PI)),
mesh: assets.load("chicken.vox"),
material: stdmats.add(Color::rgb(1., 1., 1.).into()),
..Default::default()
});
}
```
Take a look in the examples/
directory for a complete working example.
This asset loader is powered by the awesome block-mesh-rs
crate.