2025-07-23 14:03:00 +05:30
|
|
|
import MaterialSpawner from './materialSpawner'
|
|
|
|
|
import ColliderCreator from './colliders/colliderCreator'
|
2025-08-01 15:57:11 +05:30
|
|
|
import { SplineCreator } from './conveyor/splineCreator'
|
2025-07-23 14:03:00 +05:30
|
|
|
|
|
|
|
|
function PhysicsSimulator() {
|
|
|
|
|
return (
|
|
|
|
|
<>
|
2025-07-30 18:16:01 +05:30
|
|
|
|
2025-08-04 18:08:03 +05:30
|
|
|
{/* <MaterialSpawner
|
2025-07-23 14:03:00 +05:30
|
|
|
position={[0, 3, 0]}
|
|
|
|
|
spawnInterval={1000}
|
|
|
|
|
spawnCount={15}
|
|
|
|
|
/>
|
|
|
|
|
<MaterialSpawner
|
2025-07-30 18:16:01 +05:30
|
|
|
position={[6, 3, 6]}
|
2025-07-23 14:03:00 +05:30
|
|
|
spawnInterval={1000}
|
|
|
|
|
spawnCount={5}
|
2025-08-04 18:08:03 +05:30
|
|
|
/> */}
|
2025-08-01 15:57:11 +05:30
|
|
|
{/* <MaterialSpawner
|
2025-07-30 18:16:01 +05:30
|
|
|
position={[6, 3, -6]}
|
2025-07-23 14:03:00 +05:30
|
|
|
spawnInterval={1000}
|
2025-07-30 18:16:01 +05:30
|
|
|
spawnCount={5}
|
2025-08-01 15:57:11 +05:30
|
|
|
/> */}
|
2025-07-30 18:16:01 +05:30
|
|
|
|
2025-07-23 14:03:00 +05:30
|
|
|
<ColliderCreator />
|
2025-07-30 18:16:01 +05:30
|
|
|
|
2025-08-01 15:57:11 +05:30
|
|
|
{/* <SplineCreator /> */}
|
2025-07-23 14:03:00 +05:30
|
|
|
</>
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default PhysicsSimulator
|