926 reputation
727
bio website
location
age
visits member for 2 years, 10 months
seen May 5 at 18:38
stats profile views 96

May
18
awarded  Nice Question
May
2
answered How do I make my code randomly generate platforms and scroll up simultaneously for a doodle jump-style game?
May
2
answered How do I make my code randomly generate platforms and scroll up simultaneously for a doodle jump-style game?
Apr
26
comment HTML5 - Does it have the power to handle a large 2D game with a huge world?
You may have already seen this, but you should check out this HTML5 Game Development class: udacity.com/course/cs255.
Apr
24
comment Randomly spawning objects so they don't intersect
I've had to implement something similar to this before and this is the solution I chose. I'm not saying it's the best, I had situations where I couldn't find a new position that was far enough away from another position. You could also divide the screen up into parts, keep a running number of enemies in each part, choose the part of the screen that has the least enemies, then do this strategy in just that area. Just a thought.
Mar
26
awarded  Notable Question
Mar
20
awarded  Popular Question
Mar
5
comment Why does matrix multiplication lead to different result if it's done on CPU, compared to GPU(shader)?
Also, remember GPU will be column-order. Your software solution might be row-order.
Feb
25
awarded  Notable Question
Feb
6
awarded  Popular Question
Jan
30
awarded  Popular Question
Jan
28
awarded  Popular Question
Jan
13
awarded  Nice Question
Dec
29
awarded  Notable Question
Dec
21
asked Creating Smooth Animations
Dec
18
comment Viewport like Angry Bird in Corona
I'm thinking you just need to scale the images on the screen to zoom in.
Nov
30
answered Wait till all CCActions have completed
Nov
29
answered CCUserDefault, iOS/Android and game updates
Nov
18
awarded  Quorum
Nov
11
comment Is there any relation between Game Theory and Game Development?
Game economies is how the game mechanics interact with each other as well as player interaction.