@mantou/ecs
v0.0.3
Published
A simple JavaScript ECS library for NESBox Sandbox
Downloads
14
Readme
ECS
A simple JavaScript ECS library for NESBox Sandbox
Example
const helloWorld = (world) => {
console.log('hello');
for (const entity of world.getEntitiesIter()) {
if (entity.hasComponent(SizeComponent)) {
// do something...
}
}
};
const world = new World(256, 240)
.addEntity(new BasicEntity().addComponent(new SizeComponent(10, 10)))
.addSystem(helloWorld);
world.getVideoFrame();
world.getAudioFrame();
world.getState();
Custom Component
:
@registerComponent()
export class NewPieceComponent extends Component {}