Ray Casting for Bevy

CI crates.io docs.rs Bevy tracking

A Bevy plugin for 3D ray casting against meshes. Used to build bevy_mod_picking. Contributions welcome!

Uses

This plugin makes it simple to create ray casting sources, such as a transform (first person, third person shooter), or screenspace coordinates (mouse picking). Rays are shot from these sources every frame using a bevy system, and the intersections are stored in the ray casting source's component.

Bevy Version Support

I intend to track the main branch of Bevy. PRs supporting this are welcome!

|bevy|bevymodraycst| |---|---| |0.5|0.2| |0.4|0.1|

Examples

Mouse picking using a ray cast built using screen space coordinates:

shell cargo run --example mouse_picking --features ex

Ray casting from a camera using ray casts from the camera entity's GlobalTransform:

shell cargo run --example minimal --features ex