I want to draw diamond shape in my application….
how to draw this diamond shape using CCSprite and how to detect collision between this two CCSprite..
Thanks…in advance
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You simply provide an image of the diamond and initialize the CCSprite with
[CCSprite spriteWithFile:@"diamond.png"]. For collision detection you can use the physics engine Box2D, which is included in the Cocos2D SDK. You have to specify the shape of the diamond in a Box2D fixture.