From eb3d522fd1f1cf3d5d2d69f178b7fcdbe44d2eba Mon Sep 17 00:00:00 2001 From: MayaTheShy Date: Sat, 8 Nov 2025 14:45:19 -0500 Subject: [PATCH] fix: update position, rotation, and scale handling in Reify implementation for BridgeState --- bridge/src/lib.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bridge/src/lib.rs b/bridge/src/lib.rs index fcd2da3..16a35a6 100644 --- a/bridge/src/lib.rs +++ b/bridge/src/lib.rs @@ -62,9 +62,9 @@ impl Reify for BridgeState { ( *id, Axes::default() - .pos(trans) - .rot(rot) - .scl(vis_scale) + .pos([trans.x, trans.y, trans.z]) + .rot([rot.x, rot.y, rot.z, rot.w]) + .scl([vis_scale.x, vis_scale.y, vis_scale.z]) .build() ) });