Cocos2d primary article 1

Source: Internet
Author: User

1. I learned about several main classes: Director (Director), Scene (scenario), Layer (Layer), and Sprite (genie );


2. Create a Wizard:

CCSize visiblesize = CCDirector: sharedDirector ()-> getVisibleSize ();
CCSprite * sprite = CCSprite: create ("sprite.png ");
Sprite-> setPosition (ccp (visiblesize. width/2, visiblesize. height/2 ));
This-> addChild (sprite );


3. Modify the background color of the layer:

If (! CCLayerColor: initWithColor (ccc4 (255,255,255,255 ))){
Return false;} // because it is not convenient to set the color in CCLayer, It inherits its subclass CCLayerColor. Because init () cannot contain parameters, initWithColor (ccp (x, y, z, w); the first parameter indicates red, the second parameter indicates green, the third parameter indicates blue, and the fourth parameter indicates completely opaque.

Key Step 1:




Key Step 2:




Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.