simulation #50

Merged
Vishnu merged 13 commits from simulation into main 2025-04-07 13:11:41 +00:00
2 changed files with 15 additions and 15 deletions
Showing only changes of commit 1852a47775 - Show all commits

View File

@@ -99,7 +99,7 @@ const RealTimeVisulization: React.FC = () => {
{}
);
setZonesData(formattedData);
} catch (error) {}
} catch (error) { }
}
GetZoneData();
@@ -197,7 +197,7 @@ const RealTimeVisulization: React.FC = () => {
],
},
}));
} catch (error) {}
} catch (error) { }
};
useEffect(() => {
const handleClickOutside = (event: MouseEvent) => {
@@ -264,19 +264,19 @@ const RealTimeVisulization: React.FC = () => {
/>
</RenderOverlay>
)}
{/* <div
className="scene-container"
style={{
height: "100%",
width: "100%",
borderRadius:
isPlaying || activeModule !== "visualization" ? "" : "6px",
}}
onDrop={(event) => handleDrop(event)}
onDragOver={(event) => event.preventDefault()}
<div
className="scene-container"
style={{
height: "100%",
width: "100%",
borderRadius:
isPlaying || activeModule !== "visualization" ? "" : "6px",
}}
onDrop={(event) => handleDrop(event)}
onDragOver={(event) => event.preventDefault()}
>
<Scene />
</div> */}
<Scene />
</div>
{activeModule === "visualization" && selectedZone.zoneName !== "" && (
<DroppedObjects />
)}

View File

@@ -56,7 +56,7 @@ const Project: React.FC = () => {
return (
<div className="project-main">
{/* {loadingProgress && <LoadingPage progress={loadingProgress} />} */}
{loadingProgress && <LoadingPage progress={loadingProgress} />}
{!isPlaying && (
<>
{toggleThreeD && <ModuleToggle />}