From 024487e90282b97a44addc9d5ad4f7a2e5626e04 Mon Sep 17 00:00:00 2001 From: MayaTheShy Date: Sat, 8 Nov 2025 20:47:34 -0500 Subject: [PATCH] fix: correct tuple wrapping in Reify implementation for line rendering --- bridge/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bridge/src/lib.rs b/bridge/src/lib.rs index 03233e1..eb30275 100644 --- a/bridge/src/lib.rs +++ b/bridge/src/lib.rs @@ -165,14 +165,14 @@ impl Reify for BridgeState { } lines.push(Line { points: yz_points, cyclic: true }); - ( + Some(( *id, Lines::new(lines) .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() - ) + )) }, 3 if !node.model_url.is_empty() => { // Model entity - would load from URL