Comparing version 0.1.3 to 0.1.4
@@ -314,3 +314,3 @@ | ||
const world = World() | ||
const eid = world.addEntity() // 0 | ||
const eid = world.addEntity() // 1 | ||
world.entityCount() // 1 | ||
@@ -326,3 +326,3 @@ world.removeEntity(eid) | ||
const world = World() | ||
const eid = world.addEntity() // 0 | ||
const eid = world.addEntity() // 1 | ||
world.entityCount() // 1 | ||
@@ -574,4 +574,4 @@ world.removeEntity(eid, true) | ||
world.enabled() // false | ||
world.step() // does not execute systems | ||
world.step(true) // executes systems once | ||
world.step() // executes systems once | ||
world.step('system-name') // executes system-name once | ||
``` | ||
@@ -578,0 +578,0 @@ **Example** *(Step a specific system.)* |
{ | ||
"name": "bitecs", | ||
"version": "0.1.3", | ||
"version": "0.1.4", | ||
"description": "Tiny, data-driven, high performance ECS library written in Javascript", | ||
@@ -11,3 +11,3 @@ "main": "./dist/index.min.js", | ||
"email": "mrtn.nathaniel@gmail.com", | ||
"url": "https://github.com/SupremeTechnopriest" | ||
"url": "https://github.com/NateTheGreatt" | ||
}, | ||
@@ -14,0 +14,0 @@ "contributors": [ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
131410