diff options
Diffstat (limited to 'dist/serpentity.js')
| -rw-r--r-- | dist/serpentity.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dist/serpentity.js b/dist/serpentity.js index 3522b06..1f9b250 100644 --- a/dist/serpentity.js +++ b/dist/serpentity.js @@ -50,7 +50,7 @@ eventually be consumed by "Systems" You can add components to entities by using the add method: - entity.add(new PositionComponent()); + entity.addComponent(new PositionComponent()); Systems can refer to entities by requesting nodes. @@ -287,7 +287,7 @@ Class(Serpentity, "Entity")({ * * returns true if added, false if already present */ - add : function add(component) { + addComponent : function addComponent(component) { if (this._componentKeys.indexOf(component.constructor) >= 0) { return false; } |