From 3be67b5718c50f203c89d073492a55d83b05854a Mon Sep 17 00:00:00 2001 From: Jan Hohenheim Date: Sun, 13 Jul 2025 00:06:39 +0200 Subject: [PATCH] Port many_foxes --- examples/stress_tests/many_foxes.rs | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/examples/stress_tests/many_foxes.rs b/examples/stress_tests/many_foxes.rs index c1284c9bd6..91e22e71c4 100644 --- a/examples/stress_tests/many_foxes.rs +++ b/examples/stress_tests/many_foxes.rs @@ -139,11 +139,8 @@ fn setup( asset_server.load(GltfAssetLabel::Scene(0).from_asset("models/animated/Fox.glb")); let ring_directions = [ - ( - Quat::from_rotation_y(PI), - RotationDirection::CounterClockwise, - ), - (Quat::IDENTITY, RotationDirection::Clockwise), + (Quat::IDENTITY, RotationDirection::CounterClockwise), + (Quat::from_rotation_y(PI), RotationDirection::Clockwise), ]; let mut ring_index = 0;