Make the query pipeline serializable.

This commit is contained in:
Crozet Sébastien
2020-10-05 16:51:50 +02:00
parent bbfe926a11
commit 2d0a888484
3 changed files with 6 additions and 5 deletions

View File

@@ -2,7 +2,7 @@
#[derive(Clone)]
#[cfg_attr(feature = "serde-serialize", derive(Serialize, Deserialize))]
pub struct IntegrationParameters {
/// The timestep (default: `1.0 / 60.0`)
/// The timestep length (default: `1.0 / 60.0`)
dt: f32,
/// The inverse of `dt`.
inv_dt: f32,

View File

@@ -6,6 +6,7 @@ use crate::math::{Point, Vector};
use ncollide::bounding_volume::BoundingVolume;
/// A pipeline for performing queries on all the colliders of a scene.
#[cfg_attr(feature = "serde-serialize", derive(Serialize, Deserialize))]
pub struct QueryPipeline {
quadtree: WQuadtree,
tree_built: bool,
@@ -65,7 +66,7 @@ impl QueryPipeline {
// let t0 = instant::now();
let inter = self.quadtree.cast_ray(ray, max_toi);
// println!(
// "Found {} interefrences in time {}.",
// "Found {} interferences in time {}.",
// inter.len(),
// instant::now() - t0
// );