Creating a vehicle

Combining two or more joints can create some interesting effects. In this example, we will create a car that can be driven around a level.

Creating a vehicle

Getting ready

Please refer to the project RecipeCollection02 for full working code of this recipe. Also note that some of the following code has been omitted for brevity.

How to do it...

Execute the following code:

@implementation Ch4_Vehicles -(CCLayer*) runRecipe { [super runRecipe]; [message setString:@"Press and hold to drive car."]; //Initialization pressedLeft = NO; pressedRight = NO; //Create level [self createLevel]; //Add taxi [self addTaxi]; return self; } -(void) createLevel { /* Create ...

Get Cocos2d for iPhone 1 Game Development Cookbook now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.