[Switch] cclayer Related Materials

Source: Internet
Author: User

From: http://blog.csdn.net/kennyliang123/article/details/7957458

The cocos2d-x provides two macros for the cclayer subclass to generate the cclayer Node Method.

# The Node Method generated by the macro define layer_node_func (layer) does not contain parameters. The subclass must have an Init () method without parameters.

# Define layer_node_func_param (layer ,__ paramtype __,__ Param _) the macro-generated node method has parameters. The subclass must have an init method with the same parameters.

[Plain] View plaincopy
    1. Class backgroundlayer: Public cclayer
    2. {
    3. Public:
    4. Layer_node_func (backgroundlayer );
    5. Layer_node_func_param (backgroundlayer, ccstring *, ID );
    6. Virtual bool Init ();
    7. Virtual bool Init (ccstring * ID );
    8. };

Usage:

[Plain] View plaincopy
      1. backgroundlayer = backgroundlayer: node ();
      2. This-> addchild (backgroundlayer);
      3. backgroundlayer = backgroundlayer: node (m_scnid);
      4. This-> addchild (backgroundlayer);

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.