1.6.1 • Published 6 years ago

ecs.js v1.6.1

Weekly downloads
2
License
MIT
Repository
github
Last release
6 years ago

ECS.js

Entity-Component-System

Install

npm install ecs.js

Usage

let app = new App();

class Foo extends Component {}
class FooSystem extends System {}

app.registerClass('Foo', Foo);
app.registerSystem('foo.sys', FooSystem, 'Foo');

let ent = app.createEntity();
ent.addComp('Foo');

app.tick();

Documentation

TODO

License

MIT © 2017 Johnny Wu

1.6.1

6 years ago

1.6.0

6 years ago

1.5.1

6 years ago

1.5.0

6 years ago

1.4.1

6 years ago

1.4.0

6 years ago

1.3.0

6 years ago

1.2.2

6 years ago

1.2.1

7 years ago

1.2.0

7 years ago

1.1.2

7 years ago

1.1.1

7 years ago

1.1.0

7 years ago

1.0.1

7 years ago