Hack Hat
Hack Hat
Confusing API and example http://labs.phaser.io/edit.html?src=src/paths/curves/cubic%20bezier%20bounds.js // Draw t curve.getPoint(path.t, path.vec); graphics.fillStyle(0xffff00, 1); graphics.fillCircle(path.vec.x, path.vec.y, 16); Took me a while to understand that `getPoint` actually changes the path. Why you don't...
In the new ES6/7 now you can have template strings. Is it possible to enable in this project?
### Is this a bug report? yes ### Can you also reproduce the problem with npm 4.x? add a typescript error in a `test.ts` file
In my project I have version 1.4, on npm last version is 1.3 and in github last version is 1.5 What is the last recommended version to use? Also the...
- So I refresh the app - I see the redux actions for a second - 90% of the times I see "No store found. Make sure to follow the...
``` // Let's say we have these 2 routes: // `/home/:myValueA` route async action(args) { args.context.store.dispatch({type: 'onRouteEnter', params: args.params});// or return ( ); }, // `/other/:myValueB` route async action(args) {...
Let's say I start dragging something inside the window, but then I move my mouse outside the window it stops the pan event. Hammerjs for example still emits new events...
const zingPan = new ZingTouch.Pan({ numInputs: 1, threshold: 1, }); zingTouchActiveRegion.bind(this.canvasElement, zingPan, (e) => { }); What should I do to get the pan end event?