Jump to content

How Phaser input events works?


Ousaf
 Share

Recommended Posts

Suppose I'm trying to trigger a function when mouse left button pressed and I have my game core loop containing 100 lines of code.

 

I have my onClick event handler at line 876 then if game loop is at line say 107 then at that moment if I click button then what happens?

 

Is onClick EventHandler function runs concurrently with my core game loop?

Or First event handler function executes and then return back to line 107 and continue executing the game loop?

 

 

I mean to say is there multithreading like happen or not?

 

Link to comment
Share on other sites

I guess for server side javascript "Node.js" there is seperated loop for event handler. whenever event occurs then in the loop of events that particular event's function fired concurrently with main loop I guess I'm right..

Link to comment
Share on other sites

 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...