
Balamurugan
Members-
Content Count
31 -
Joined
-
Last visited
About Balamurugan
-
Rank
Advanced Member
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
-
-
-
-
-
I Develop One Game in HTML5. Now my Client Ask They Need For Windows. I don't know which is the best method?. Anyone have Knowledge? I need to convert HTML5 to EXE(windows). Best Practice with Examples i want. And also Exe size should be less. Please share your knowledge.
-
Phaser ES6 communicate Between Normal Class to Scene Class
Balamurugan replied to Balamurugan's topic in Phaser 3
Ok, Thanks I use events emitter to communicate class. -
I want to develop HTML5 games. I Don't know how to start?. Lots of them tells Use ES6. Anyone which is best method to develop HTML5 games With socket connection. I need a sample file or example link. Share Your Knowledge.
-
Phaser ES6 communicate Between Normal Class to Scene Class
Balamurugan replied to Balamurugan's topic in Phaser 3
I can't pass the scene. Becoz Smartfox server automatically throw's connection lost event to "checkConnection" class. R u understand what i am telling. -
I want to communicate between normal class to Phaser scene class. How to do that ? Normal Class:- export default class checkConnection { i need to call the scene class ? } Scene class:- import { Scene } from ‘phaser’; class connectionLost extends Scene { constructor() { super({ key: connectionLost }); } /** create */ create() { //Show Popup Contains connection Lost Message. } } export default connectionLost; Lots of them tells can’t call normal class to scene class. please Go to trigger custom Window event. Any-other option there to call. Please share your Knowledge.
-
-
-
I Use "phaser-ce": "^2.10.0". I want to integrate razorpay payment gateway in phaser es6 webpack. There is sample code in razorpay this is the URL - https://github.com/razorpay/razorpay-cordova . In this URL i add the plugin. But i don't know how to import into sample state or any other methods there ? Any one share your knowledge how to import plugins? Please Help Us.
-
- phaser2
- payment gateway
-
(and 1 more)
Tagged with:
-
My Backend is java. I create a socket using java. I want to connect this scoket using socket.io what can i do. i can't find any tuts. Any one can share ur Knowledge. How to connect live ip using socket.io.
-
I have The Same Problem Using Crosswalk Web View. AnyOne have a solution for this.
-
-
my game is timer Based game. What can i do. Any other option there for that problem.
-
In Phaser i use ES5, this is my boot state. ------------------------------------ var initGame = function(game) {}; initGame.prototype = { init: function() { console.log("INIT GAME"); this.scale.scaleMode = Phaser.ScaleManager.SHOW_ALL; this.game.stage.disableVisibilityChange = true; }, preload:function () { console.log("Preload"); }, create:function () { game.state.start("STAGE_ASSETS"); }, } ------------------------------------------------------------------------------------------------------------------------------------------------------ This is My Second State- ----------------------------------------- var stageAssets = function () { i =0; } stageAssets.prototype = { create: function () { console.log("STAGE ASSETS"); }, update: function () { wheel.angle +=1; console.log("----------------i----->"+i++); }, } In this game i just trace i in update, In browser i just move to next tab update is stopped, I also put In my boot state, still Update is not Working when i minimize window or move to next tab, update is stopped. In my game i put some main functions in update. that function are not working at that time. I google is lots of time, still no one give solution. Please Help us rectify this problem.
-
@prob Any solution there for browser stop updating?
-
Please send any reference link or any code sample. Thank you so much for your response. And also i check your phaser timer based game pirates the match. In this game if i minimize the window, timer is stopped. I also try this scenario timer is stopped when i minimize window. Its great drawback in browser. i dont know this pblm is in browser or phaser. Any Idea, about window minimize game is paused. how to prevent game pause when minimize browser window.
-
-
-
ANYONE THERE ??????
-
-
window minimize game is stopper how to prevent
Balamurugan replied to Balamurugan's topic in Phaser 3
There is any other way there for that problem. How to solve this problem.