Getting very frustrated. I'm trying to be a really good Noobie. Im reading every freeking manual I can find...
I'm currently looking at Game Demo Tutorial #3 at http://morethanmachine.com/macdev/?tag=game-demo-tutorial-series
I'm sure its a good demo, but where do we find good documentation on what appear to be basic concepts?
for Example, the following in GameScene.m I am beginning to understand the general layout of methods and the objectiveness of it all, but in the following example:
space = cpSpaceNew();
cpSpaceResizeStaticHash(space, 400.0f, 40);
cpSpaceResizeActiveHash(space, 100, 600);
What resource would one turn to to know that these chipmunk functions are necessary or what they do?
I wouldnt even know that i'm supposed to insert such commands into my code.