0.0.2 • Published 8 years ago

@nathanfaucett/scene_graph v0.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
8 years ago

scene_graph Build Status

entity component scene graph

var sceneGraph = require("@nathanfaucett/scene_graph");


var Scene = sceneGraph.Scene,
    Entity = sceneGraph.Entity;


var scene = Scene.create(),
    entity = Entity.create();


scene.addEntity(entity);