🚀 Auto-deploy: melhoria no snap e medição AR em 25/05/2026 01:16:07
This commit is contained in:
@@ -687,7 +687,11 @@ function ThreeMeetingRoomScene({ currentActiveModel, presentationState, isFocusM
|
|||||||
export default function MeetingRoom() {
|
export default function MeetingRoom() {
|
||||||
const { roomId } = useParams<{ roomId?: string }>();
|
const { roomId } = useParams<{ roomId?: string }>();
|
||||||
const navigate = useNavigate();
|
const navigate = useNavigate();
|
||||||
const activeModel = useModelStore((s) => s.model);
|
const models = useModelStore((s) => s.models);
|
||||||
|
const activeModelId = useModelStore((s) => s.activeModelId);
|
||||||
|
const activeModel = useMemo(() => {
|
||||||
|
return models.find((m) => m.id === activeModelId) || null;
|
||||||
|
}, [models, activeModelId]);
|
||||||
|
|
||||||
// Estados do Lobby
|
// Estados do Lobby
|
||||||
const [inRoom, setInRoom] = useState(false);
|
const [inRoom, setInRoom] = useState(false);
|
||||||
|
|||||||
Reference in New Issue
Block a user