fix: update position, rotation, and scale handling in Reify implementation for BridgeState

This commit is contained in:
MayaTheShy
2025-11-08 14:45:19 -05:00
parent 8416ff0e25
commit eb3d522fd1

View File

@@ -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()
)
});