Integrate RobotlegsJS framework with PixiJS.
/// <reference path="node_modules/robotlegs-pixi/definitions/pixi.d.ts" />
import { Context, MVCSBundle } from "robotlegs";
import { PixiBundle ,ContextView } from "robotlegs-pixi";
let context = new Context();
context.
install( MVCSBundle, PixiBundle ).
configure( new ContextView((<any>this.renderer).plugins.interaction) );
Run the following commands to run the example:
npm install -g typings
typings install
npm install
npm start