feat: Enhance vehicle simulation with draggable path points and interactive controls

This commit is contained in:
2025-07-05 11:16:31 +05:30
parent 3f59f5d2dd
commit 5a0978560c
11 changed files with 996 additions and 134 deletions

View File

@@ -15,6 +15,7 @@ import {
useToolMode,
useRenderDistance,
useLimitDistance,
useLoadingProgress,
} from "../../store/builder/store";
////////// 3D Function Imports //////////
@@ -56,6 +57,7 @@ export default function Builder() {
const { projectId } = useParams();
const { setHoveredPoint, setHoveredLine } = useBuilderStore();
const { userId, organization } = getUserData();
const { loadingProgress } = useLoadingProgress();
useEffect(() => {
if (!toggleView) {
@@ -115,8 +117,7 @@ export default function Builder() {
<CalculateAreaGroup />
<NavMesh />
{loadingProgress == 0 && <NavMesh />}
<DxfFile />
<LayoutImage />