Kostiantyn Kostiuk
Kostiantyn Kostiuk
while trying to bootstrap it like this: ``` var appPromise = bootstrap(AppComponent, [LocalStorageService]); LocalStorageSubscriber(appPromise); ``` it give an error: > Uncaught Cannot resolve all parameters for 'LocalStorageService'(?). Make sure that...
Is it possible to use more than one CPU cores for simulation calculation? I'm experimenting with server to calculate and stream physic for supposedly multiplayer game. Everything working fine at...
I have spend few crazy hours trying to understand what is wrong in my application. When you want to convert from Euler to Quaternion you have `quaternion.toEuler` and `quaternion.setFromEuler`. And...
I'm trying to implement server-side physics calculations for my game with cannon.js and I need to stream that calculation's result to a player. Basically it is objects positions and rotation....
I need to use this https://github.com/taion/graphql-type-json in my graphQL schemas. How would I include it in appsync plugin?
I want to implement Hud system that would add, update and remove all the UI elements. The thing is, I want this to work only on few game states. So...
how to use it with gulp-typescript ?
the example code: ``` gulp.task('hello-world', function() { return run('echo Hello World').exec() // prints "Hello World\n". .pipe(gulp.dest('output')) // writes "Hello World\n" to output/echo. ; }) ``` currently return error > [15:04:29]...
is it possible to somehow hack the 1024x1024 texture limitation? I'm currently using 2048x3040 and the tiles outside 1024x1024 is just ignored.
In the [demo atlas.json](https://github.com/pixijs/pixi-tilemap/blob/master/basic/atlas.json) I can see a `rotated` property for each frame. However I can't find any more mentions of `rotated` in this repo. So my questions is -...