Merge remote-tracking branch 'origin/simulation-animation' into simulation

This commit is contained in:
2025-04-01 18:54:56 +05:30
17 changed files with 988 additions and 217 deletions

View File

@@ -5,6 +5,7 @@ import Behaviour from './behaviour/behaviour';
import PathCreation from './path/pathCreation';
import PathConnector from './path/pathConnector';
import useModuleStore from '../../store/useModuleStore';
import ProcessContainer from './process/processContainer';
function Simulation() {
const { activeModule } = useModuleStore();
@@ -36,6 +37,7 @@ function Simulation() {
<>
<PathCreation pathsGroupRef={pathsGroupRef} />
<PathConnector pathsGroupRef={pathsGroupRef} />
<ProcessContainer />
</>
)}
</>