From 54a43de5bbe39933f777c12381c7612ef92ee14d Mon Sep 17 00:00:00 2001 From: ickshonpe Date: Tue, 15 Jul 2025 10:58:26 +0100 Subject: [PATCH] Set a color for the aabb's visualization in the example.. --- examples/testbed/2d.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/examples/testbed/2d.rs b/examples/testbed/2d.rs index c6a0cadf8f..4731277df5 100644 --- a/examples/testbed/2d.rs +++ b/examples/testbed/2d.rs @@ -221,7 +221,9 @@ mod text { Transform::from_translation(dest + Vec3::Z), anchor, DespawnOnExitState(super::Scene::Text), - ShowAabbGizmo::default(), + ShowAabbGizmo { + color: Some(palettes::tailwind::AMBER_400.into()), + }, children![ ( TextSpan::new(format!("{}, {}\n", anchor.x, anchor.y)),