#bevy #magica-voxel #voxel

bevy_vox

为bevy引擎加载MagicaVoxel Vox文件

9次重大发布

0.10.0 2024年7月15日
0.9.0 2024年3月16日
0.8.1 2023年11月16日
0.8.0 2022年10月9日
0.2.0 2020年11月4日

#273 in 游戏开发

MIT许可证

30KB
167

bevy引擎加载MagicaVoxel Vox文件。

bevy_vox bevy
0.10 0.14
0.9 0.13
0.8 0.12
0.7 0.10
0.6 0.9
0.5 0.8
0.4 0.6
0.3 0.5
0.2 0.4

示例

use bevy::prelude::*;
use bevy_vox::VoxPlugin;

fn main() {
    App::new()
        .insert_resource(Msaa::Sample4)
        .add_plugins(DefaultPlugins)
        .add_plugins(VoxPlugin::default())
        .insert_resource(AmbientLight {
            color: Color::WHITE,
            brightness: 0.5,
        })
        .add_systems(Startup, setup)
        .run();
}

fn setup(mut commands: Commands, asset_server: Res<AssetServer>) {
    // add entities to the world
    commands.spawn(SceneBundle {
        scene: asset_server.load("2x2x2.vox"),
        transform: Transform::from_xyz(0.0, 0.0, 0.0),
        ..default()
    });

    // light
    commands.spawn(PointLightBundle {
        point_light: PointLight {
            intensity: 3_000_000.0,
            ..Default::default()
        },
        transform: Transform::from_xyz(3.0, -3.5, 4.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()
    });
}

依赖

~36–74MB
~1.5M SLoC