aevyrie / bevy_mod_raycast

A little mesh raycasting plugin for Bevy
https://crates.io/crates/bevy_mod_raycast
MIT License
303 stars 92 forks source link

Replace Ray3d with bevy::prelude::Ray #68

Closed Shatur closed 1 year ago

Shatur commented 1 year ago

After 0.9 Bevy have this functionality built-in.

TotalKrill commented 1 year ago

Yeah, but the built in Ray functionality in Bevy, is not as complete as this from what I can tell, It also does not use Vec3A types, which are SIMD compatible, and thus the Ray3D Should be more performant

Shatur commented 1 year ago

Fair.