aboutsummaryrefslogtreecommitdiff
path: root/examples2d
diff options
context:
space:
mode:
authorrezural <rezural@protonmail.com>2020-12-31 13:24:29 +1100
committerrezural <rezural@protonmail.com>2020-12-31 13:24:29 +1100
commitf7820139471178fd273c7698eba17cb4ee0cf00d (patch)
tree8bcba52a9b7cea7e7abdd78c061e514df3b71c28 /examples2d
parentd992ebc4885737511d9b5fafd1846e7601963e55 (diff)
downloadrapier-f7820139471178fd273c7698eba17cb4ee0cf00d.tar.gz
rapier-f7820139471178fd273c7698eba17cb4ee0cf00d.tar.bz2
rapier-f7820139471178fd273c7698eba17cb4ee0cf00d.zip
make examples compile, code that accessed window & graphics via the callback is currently disabled, until that is added back in
Diffstat (limited to 'examples2d')
-rw-r--r--examples2d/add_remove2.rs10
-rw-r--r--examples2d/platform2.rs2
-rw-r--r--examples2d/sensor2.rs8
3 files changed, 13 insertions, 7 deletions
diff --git a/examples2d/add_remove2.rs b/examples2d/add_remove2.rs
index a3d223d..7ace00f 100644
--- a/examples2d/add_remove2.rs
+++ b/examples2d/add_remove2.rs
@@ -10,7 +10,7 @@ pub fn init_world(testbed: &mut Testbed) {
let rad = 0.5;
// Callback that will be executed on the main loop to handle proximities.
- testbed.add_callback(move |window, physics, _, graphics, _| {
+ testbed.harness_mut().add_callback(move |physics, _, _, _| {
let rigid_body = RigidBodyBuilder::new_dynamic()
.translation(0.0, 10.0)
.build();
@@ -19,7 +19,9 @@ pub fn init_world(testbed: &mut Testbed) {
physics
.colliders
.insert(collider, handle, &mut physics.bodies);
- graphics.add(window, handle, &physics.bodies, &physics.colliders);
+
+ // TODO: need a way to access graphics & window
+ // graphics.add(window, handle, &physics.bodies, &physics.colliders);
let to_remove: Vec<_> = physics
.bodies
@@ -31,7 +33,9 @@ pub fn init_world(testbed: &mut Testbed) {
physics
.bodies
.remove(handle, &mut physics.colliders, &mut physics.joints);
- graphics.remove_body_nodes(window, handle);
+
+ // TODO: need a way to access graphics & window
+ // graphics.remove_body_nodes(window, handle);
}
});
diff --git a/examples2d/platform2.rs b/examples2d/platform2.rs
index 3b543db..5b84a18 100644
--- a/examples2d/platform2.rs
+++ b/examples2d/platform2.rs
@@ -60,7 +60,7 @@ pub fn init_world(testbed: &mut Testbed) {
/*
* Setup a callback to control the platform.
*/
- testbed.add_callback(move |_, physics, _, _, run_state| {
+ testbed.harness_mut().add_callback(move |physics, _, run_state, _| {
let platform = physics.bodies.get_mut(platform_handle).unwrap();
let mut next_pos = *platform.position();
diff --git a/examples2d/sensor2.rs b/examples2d/sensor2.rs
index 959ecbf..c9edea0 100644
--- a/examples2d/sensor2.rs
+++ b/examples2d/sensor2.rs
@@ -69,7 +69,7 @@ pub fn init_world(testbed: &mut Testbed) {
testbed.set_body_color(sensor_handle, Point3::new(0.5, 1.0, 1.0));
// Callback that will be executed on the main loop to handle proximities.
- testbed.add_callback(move |_, physics, events, graphics, _| {
+ testbed.harness_mut().add_callback(move |physics, events, _, _| {
while let Ok(prox) = events.proximity_events.try_recv() {
let color = match prox.new_status {
Proximity::WithinMargin | Proximity::Intersecting => Point3::new(1.0, 1.0, 0.0),
@@ -80,10 +80,12 @@ pub fn init_world(testbed: &mut Testbed) {
let parent_handle2 = physics.colliders.get(prox.collider2).unwrap().parent();
if parent_handle1 != ground_handle && parent_handle1 != sensor_handle {
- graphics.set_body_color(parent_handle1, color);
+ // TODO: need a way to access graphics & window
+ // graphics.set_body_color(parent_handle1, color);
}
if parent_handle2 != ground_handle && parent_handle2 != sensor_handle {
- graphics.set_body_color(parent_handle2, color);
+ // TODO: need a way to access graphics & window
+ // graphics.set_body_color(parent_handle2, color);
}
}
});