Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion rhusics-ecs/src/collide/systems/basic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ where
Y: Default + Send + Sync + 'static,
B: Bound<Point = P::Point> + Send + Sync + 'static + Union<B, Output = B> + Clone,
D: HasBound<Bound = B> + From<(Entity, B)> + GetId<Entity>,
for<'b: 'a> &'b T::Storage: Join<Type = &'b T>,
for<'b> &'b T::Storage: Join<Type = &'b T>,
{
type SystemData = (
Entities<'a>,
Expand Down
4 changes: 2 additions & 2 deletions rhusics-ecs/src/collide/systems/spatial_collision.rs
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ where
P::Point: Debug + Send + Sync + 'static,
T: Component + Clone + Debug + Transform<P::Point> + Send + Sync + 'static,
Y: Default + Send + Sync + 'static,
for<'b: 'a> &'b T::Storage: Join<Type = &'b T>,
for<'b> &'b T::Storage: Join<Type = &'b T>,
D: Send + Sync + 'static + TreeValue<Bound = B> + HasBound<Bound = B> + GetId<Entity>,
{
type SystemData = (
Expand Down Expand Up @@ -160,7 +160,7 @@ where
T: Component + Transform<P::Point> + Send + Sync + Clone + 'static,
Y: Default + Send + Sync + 'static,
B: Bound<Point = P::Point> + Send + Sync + 'static + Union<B, Output = B> + Clone,
for<'b: 'a> &'b T::Storage: Join<Type = &'b T>,
for<'b> &'b T::Storage: Join<Type = &'b T>,
{
fn get_broad_data(&self) -> Vec<D> {
Vec::default()
Expand Down
2 changes: 1 addition & 1 deletion rhusics-ecs/src/collide/systems/spatial_sort.rs
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ where
<P::Point as EuclideanSpace>::Diff: Debug + Send + Sync,
T: Component + Clone + Debug + Transform<P::Point> + Send + Sync,
Y: Default + Send + Sync + 'static,
for<'b: 'a> &'b T::Storage: Join<Type = &'b T>,
for<'b> &'b T::Storage: Join<Type = &'b T>,
D: Send + Sync + 'static + TreeValue<Bound = B> + From<(Entity, B)>,
{
type SystemData = (
Expand Down