Skip to main content
3 votes
Accepted

Feasible to do all game logic on PHP server?

It depends on your skill at programming, but it should be feasible. Remember, Facebook was built in PHP and it serves a pretty big crowd. A better question might be if PHP is the best choice for what ...
Erik's user avatar
  • 1,586
1 vote
Accepted

Better way than url-encoded query stings to pass data from PHP to Flash?

What you have here is basically a RESTful webservice API. The client communicates with the backend using HTTP requests with the request parameters in the query string. The backend then answers the ...
Philipp's user avatar
  • 123k
1 vote

Is there any way to change the layering of objects in Actionscript 3 without altering the run order?

When you say "runs the instances" what logic specifically are you talking about? You should not be processing game logic by looping over DisplayObject.children. ...
Engineer's user avatar
  • 30.4k
1 vote

How does Actionscript choose which order to run objects' code in?

If your are working on Flash or Adobe Animate area, change the depth of your MovieClips to change the order of running them by select and press ctrl+shift+(UP or DOWN).
MESepehr's user avatar
  • 151
1 vote
Accepted

Character jumping but not returning to ground platform game AS3

You forgot to add Newton's listens about gravity here :D. change the function gameLoop with mine and add tree variable out of it. ...
MESepehr's user avatar
  • 151
1 vote

Camera and enemy behaviour in AS3 platformer

It has been a while since I used AS3, but... I believe you are expanding the hitbox of the enemy by adding bullets as children. Even when the bullets are removed from the enemy, the hitbox stays ...
Kyy13's user avatar
  • 760
1 vote

How to detect 2D line on line collision?

The accepted answer gave a wrong answer in this case: x1 = 0; y1 = 0; x2 = 10; y2 = 10; x3 = 10.1; y3 = 10.1; x4 = 15; y4 = 15; These lines obviously don't ...
joram's user avatar
  • 11

Only top scored, non community-wiki answers of a minimum length are eligible