#bevy #graphics #gamedev

bevy_normal_material

Simple normal material for Bevy

6 releases (3 breaking)

0.5.2 Apr 25, 2024
0.5.1 Apr 25, 2024
0.4.0 Jan 17, 2024
0.2.1 Mar 12, 2023
0.1.1 Nov 18, 2022

#145 in Rendering

Download history 10/week @ 2024-01-11 1/week @ 2024-01-18 7/week @ 2024-02-15 13/week @ 2024-02-22 7/week @ 2024-02-29 26/week @ 2024-03-28 12/week @ 2024-04-04 182/week @ 2024-04-18 254/week @ 2024-04-25

456 downloads per month
Used in 3 crates

MIT license

24KB
123 lines

Bevy Normal Material

crates.io

Simple normal material for Bevy.

Example

Usage

System setup

Add the plugin to your app:

use bevy::prelude::*;
use bevy_normal_material::prelude::*;

fn main() {
    App::new()
        .add_plugins(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
0.11 0.3
0.12 0.4
0.13 0.5

Dependencies

~40–80MB
~1.5M SLoC