Tell me more ×
Game Development Stack Exchange is a question and answer site for professional and independent game developers. It's 100% free, no registration required.

Is there any good book or tutorial that explains the physics behind creating a 2D Platformer game? Such as tile rendering, tile map reading, collision detection, camera movement etc.?

share|improve this question
1  
Wait, what does rendering and camera movement have to do with physics? – Yannbane Aug 6 '12 at 11:38

1 Answer

up vote 9 down vote accepted

I think I stumbled upon this link here on gamedev and I really found it enlighting.

http://higherorderfun.com/blog/2012/05/20/the-guide-to-implementing-2d-platformers/

It explains some basic methods of implementing tile based levels, but there are also some important parts about how certain mechanics work in 2d platformers. I think you should look into slopes, as they can solve many problems you come across in platformers.

Good to know is, that most platformers don't even bother with implementing proper physics, but implement certain rules, that mimic some physical behavior (like gravity), but allow certain behaviors that wouldn't be allowed with proper physics (air control for example).

share|improve this answer
+1 for the link bookmarking :) – AbstractChaos Aug 6 '12 at 14:10
Awesome link. Thanks. – ApprenticeHacker Aug 6 '12 at 17:15

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.