Module bevy::gizmos

source ·
Expand description

Immediate mode drawing api for visual debugging.

Example

fn system(mut gizmos: Gizmos) {
    gizmos.line(Vec3::ZERO, Vec3::X, Color::GREEN);
}

See the documentation on Gizmos for more examples.

Modules

Structs