31 lines
695 B
JavaScript
31 lines
695 B
JavaScript
import Components from '@/ecs-components/index.js';
|
|
import Systems from '@/ecs-systems/index.js';
|
|
|
|
export default function createEcs(Ecs) {
|
|
const ecs = new Ecs({Components, Systems});
|
|
const defaultSystems = [
|
|
'Attract',
|
|
'ResetForces',
|
|
'ApplyControlMovement',
|
|
'IntegratePhysics',
|
|
'ClampPositions',
|
|
'PlantGrowth',
|
|
'FollowCamera',
|
|
'VisibleAabbs',
|
|
'Colliders',
|
|
'ControlDirection',
|
|
'SpriteDirection',
|
|
'RunAnimations',
|
|
'RunTickingPromises',
|
|
'Water',
|
|
'Interactions',
|
|
];
|
|
defaultSystems.forEach((defaultSystem) => {
|
|
const System = ecs.system(defaultSystem);
|
|
if (System) {
|
|
System.active = true;
|
|
}
|
|
});
|
|
return ecs;
|
|
}
|