JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 28
  • Score
    100M100P100Q46013F
  • License MIT

entity component system

Package Exports

  • ept-ecs

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (ept-ecs) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

ECS

Entity-component-system

This project is an attempt to make a small and easy to use ecs for web game.

create a new world

var world: ESC.World = new ESC.World();

// let's add a "HEALTH" component
world.registerComponent("health", default);
var entity1 = world.createEntity();
var