2 unstable releases
0.2.1 | Mar 12, 2023 |
---|---|
0.2.0 |
|
0.1.1 | Nov 18, 2022 |
0.1.0 |
|
#185 in #bevy
44 downloads per month
19KB
85 lines
Bevy Normal Material
Simple normal material for Bevy.
Usage
System setup
Add the plugin to your app:
use bevy::prelude::*;
use bevy_normal_material::prelude::*;
fn main() {
App::new()
.add_plugin(NormalMaterialPlugin);
}
Apply a component to a MaterialMeshBundle
fn setup(
mut commands: Commands,
mut meshes: ResMut<Assets<Mesh>>,
mut materials: ResMut<Assets<NormalMaterial>>,
) {
commands.spawn(MaterialMeshBundle {
mesh: meshes.add(Mesh::from(shape::Cube { size: 1.0 })),
material: materials.add(NormalMaterial::default()),
..Default::default()
});
}
Compatibility
bevy | bevy_normal_material |
---|---|
0.9 | 0.1 |
0.10 | 0.2 |
Dependencies
~22–57MB
~1M SLoC