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() {
|
2025-08-21 17:57:45 +05:30
|
|
|
|
2025-07-23 14:03:00 +05:30
|
|
|
return (
|
|
|
|
|
<>
|
2025-07-30 18:16:01 +05:30
|
|
|
|
2025-08-20 10:37:39 +05:30
|
|
|
<MaterialSpawner
|
2025-08-23 09:37:47 +05:30
|
|
|
position={[7.3, 2, 12.6]}
|
2025-07-23 14:03:00 +05:30
|
|
|
spawnInterval={1000}
|
2025-08-23 09:37:47 +05:30
|
|
|
spawnCount={50}
|
2025-08-20 10:37:39 +05:30
|
|
|
/>
|
|
|
|
|
{/* <MaterialSpawner
|
2025-08-19 10:19:18 +05:30
|
|
|
position={[3.8, 3, 3]}
|
|
|
|
|
spawnInterval={1000}
|
|
|
|
|
spawnCount={50}
|
2025-08-20 10:37:39 +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-19 10:19:18 +05:30
|
|
|
{/* <SplineCreator /> */}
|
2025-07-23 14:03:00 +05:30
|
|
|
</>
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default PhysicsSimulator
|