Merge remote-tracking branch 'origin/feature/layout-comparison-version' into dev-heatmap

This commit is contained in:
2025-09-06 14:41:20 +05:30
11 changed files with 758 additions and 295 deletions

View File

@@ -3,6 +3,7 @@ import { useActionHandler } from "../actions/useActionHandler";
import { usePlayButtonStore, useResetButtonStore } from "../../../store/ui/usePlayButtonStore";
import { determineExecutionOrder } from "./functions/determineExecutionOrder";
import { useSceneContext } from "../../scene/sceneContext";
import SimulationHandler from "./SimulationHandler";
function Simulator() {
const { productStore } = useSceneContext();
@@ -24,7 +25,17 @@ function Simulator() {
});
}, [products, isPlaying, isReset, selectedProduct]);
return <></>;
return (
<>
{/* <simulationHandler/> */}
<SimulationHandler />
</>
);
}
export default Simulator;