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 ...
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 ...
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. ...
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).
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.
...
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 ...
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 ...
Only top scored, non community-wiki answers of a minimum length are eligible
Related Tags
actionscript-3 × 322flash × 147
mathematics × 18
physics × 17
flixel × 17
collision-detection × 14
box2d × 14
flashdevelop × 13
2d × 11
flash-cs5 × 11
movement × 9
platformer × 9
actionscript × 9
camera × 8
mouse × 8
animation × 7
architecture × 7
tiles × 7
optimization × 7
game-design × 6
sprites × 6
game-loop × 6
events × 6
c++ × 5
java × 5