-
Content Count
312 -
Joined
-
Last visited
About jdnichollsc
-
Rank
Advanced Member
- Birthday 08/26/1991
Contact Methods
-
Website URL
http://www.nicholls.co/
-
Twitter
jdnichollsc
-
Skype
jdnichollsc
Profile Information
-
Gender
Male
-
Location
Colombia
-
Interests
Check my on GitHub https://github.com/jdnichollsc
Recent Profile Visitors
3809 profile views
-
-
-
-
jdnichollsc started following Interaction between Phaser 3 and React - Native, How does setCORS work, GeometryMask: Children(sprites) of a container displayed inside a zone and and 7 others
-
I'm getting this issue too testing with NestJS/Express, do you know how to solve that? I can't find any log debugging from back SOLVED (using app.yaml) 🙂 runtime: nodejs10 network: session_affinity: true entrypoint: npm run start:prod handlers: - url: /images static_dir: dist/public/images http_headers: Access-Control-Allow-Origin: '*'
-
-
GeometryMask: Children(sprites) of a container displayed inside a zone
jdnichollsc replied to _ok's topic in Phaser 3
Hello folks, do you know how to get world position of the container to update the position of the mask for that container? Thanks in advance! -
Hey folks, do you work at Game Closure? do you have good references? Thanks in advance!
-
DarkMoon_Lander reacted to a post in a topic: Awesome JavaScript Games and resources in Collaboration
-
Hello folks, I'm creating a list of awesome JavaScript games and resources https://github.com/proyecto26/awesome-jsgames It would be awesome if you can suggest me more resources to add! Pull requests are always welcome! ❤️ Group on Facebook: https://www.facebook.com/groups/javascriptgames Regards, JD
-
Hello folks, I'm creating a list of awesome JavaScript games and resources https://github.com/proyecto26/awesome-jsgames I was wondering if you can give me some links of assets, resources, etc to add? Pull requests are always welcome! ❤️ Group on Facebook: https://www.facebook.com/groups/javascriptgames Regards! JD
-
Hello folks, I'm creating a list of awesome JavaScript games and resources https://github.com/proyecto26/awesome-jsgames I was wondering if you can give me some links of assets, resources, etc to add? Pull requests are always welcome! ❤️ Group on Facebook: https://www.facebook.com/groups/javascriptgames Regards! JD
-
Hello folks, I'm creating a list of awesome JavaScript games and resources https://github.com/proyecto26/awesome-jsgames I was wondering if you can give me some links of assets, resources, etc to add? Pull requests are always welcome! Group on Facebook: https://www.facebook.com/groups/javascriptgames Regards! JD
-
Calling an Angular function from within Phaser 3 scene
jdnichollsc replied to Doug's topic in Phaser 3
About how to calling angular functions within a phaser scene, you should be able to do that if you save the context before to initialize the game. Check a little example with IonPhaser WebComponent: import { Component } from '@angular/core' import * as Phaser from 'phaser' import { ApiService } from '../services'; @Component({ selector: 'my-component', templateUrl: './my-component.html' }) export class MyComponent { game: Phaser.Game initialize = false constructor( private readonly api: ApiService ){} initializeGame() { const context = this context.initialize = true context.game = { width: "100%", height: "100%", type: Phaser.AUTO, scene: { create() { this.helloWorld = this.add.text(0, 0, 'Hello World') } update () { this.helloWorld.angle += 1; } saveGame() { const { angle } = this.helloWorld context.api.saveAngle(angle) } } } } } Other options can be using event emitters, injecting the component context, etc For any other question, please check the repository of the project: https://github.com/proyecto26/ion-phaser/issues/15 Kind regards, Juan -
-
@Manikant tiwari please use the repository of the plugin to report any issue https://github.com/jdnichollsc/Phaser-Kinetic-Scrolling-Plugin/issues
- 2 replies
-
- horizontal
- vertical
-
(and 2 more)
Tagged with:
-
-
Check my WebComponent integrating Phaser with any other framework/library: - Phaser 2 (Community Edition) => https://github.com/proyecto26/ion-phaser-ce - Phaser 3 => https://github.com/proyecto26/ion-phaser Check the Flappy Bird example: https://codepen.io/jdnichollsc/pen/jOOWXJQ
- 9 replies
-
- Phaser React JSX
- React
-
(and 2 more)
Tagged with:
-
-
Check this component I created to integrate Phaser 3 with Angular, React, VueJS, Ionic, etc => https://github.com/proyecto26/ion-phaser
-
It's complicated because you need the browser to support WebGL/Canvas and I don't know if the performance is good from Android, but let me know what you see
-
I fixed the issues from IonPhaser, let me know if you have any other problem with that WebComponent, more details about React here
- 2 replies
-
- mobile
- react-native
-
(and 2 more)
Tagged with:
-
Hey guys, I recommend you this WebComponent I created to be able to integrate Phaser 3 with any Framework like Angular, React, etc easily => https://github.com/proyecto26/ion-phaser Check the demos of the repository and let me know any doubt Regards