# Raycasting for Bevy [![CI](https://github.com/aevyrie/bevy_mod_raycast/workflows/CI/badge.svg?branch=master)](https://github.com/aevyrie/bevy_mod_raycast/actions?query=workflow%3A%22CI%22+branch%3Amaster) [![crates.io](https://img.shields.io/crates/v/bevy_mod_raycast)](https://crates.io/crates/bevy_mod_raycast) [![docs.rs](https://docs.rs/bevy_mod_raycast/badge.svg)](https://docs.rs/bevy_mod_raycast) [![Bevy tracking](https://img.shields.io/badge/Bevy%20tracking-main-lightblue)](https://github.com/bevyengine/bevy/blob/main/docs/plugins_guidelines.md#main-branch-tracking) ![raycast demo](https://github.com/aevyrie/bevy_mod_raycast/assets/2632925/4a1019d3-cbfa-4b20-b5c9-19a71ca09e04) A [Bevy](https://github.com/bevyengine/bevy) plugin for 3D ray casting against meshes. Used to build [`bevy_mod_picking`](https://github.com/aevyrie/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).

Alternatives

For a more full featured and performant option, consider using bevy_rapier. Note that rapier is a full physics engine that can also do raycasting; by contrast, this crate prioritizes simplicity and ergonomics.

Bevy Version Support

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

| bevy | bevymodraycast | | ---- | ---------------- | | 0.11 | 0.9, 0.10, 0.11, 0.12 | | 0.10 | 0.8 | | 0.9 | 0.7 | | 0.8 | 0.6 | | 0.7 | 0.4, 0.5 | | 0.6 | 0.3 | | 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

Mouse picking using a ray cast built using screen space coordinates, for 2D meshes:

shell cargo run --example mouse_picking_2d

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

shell cargo run --example minimal

Manually compute raycast against primitive shape, and check for line-of-sight visibility shell cargo run --example ray_intersection_over_mesh

Optimization Mouse picking over many meshes using AABBs:

shell cargo run --example bounding_volume

Optimization Mouse picking over complicated mesh using simplified mesh for the raycasting:

shell cargo run --example simplified_mesh