zoukankan      html  css  js  c++  java
  • cocos2dx进阶学习之CCTMXLayer

    继承关系

    CCTMXLayer -> CCSpriteBatchNode

    CCTMXLayer是在瓦片地图中,抽象一个层的类,它继承自CCSpriteBatchNode,也就是说它抽象了一批相同图片的精灵,在瓦片地图中,用层来抽象她们。

    成员函数

    CCSprite* tileAt(const CCPoint& tileCoordinate);

    获取该坐标的精灵,这里的坐标是网格坐标


    unsigned int  tileGIDAt(const CCPoint& tileCoordinate);

    获取该网格坐标的GID


    void setTileGID(unsigned int gid, const CCPoint& tileCoordinate);

    void setTileGID(unsigned int gid, const CCPoint& tileCoordinate, ccTMXTileFlags flags);

    设置该点的GID


    void removeTileAt(const CCPoint& tileCoordinate);

    删除tile


    CCPoint positionAt(const CCPoint& tileCoordinate);

    坐标转化


    CCString *propertyNamed(const char *propertyName);

    属性值


    void setupTiles();

    创建瓦片


    virtual void addChild(CCNode * child, int zOrder, int tag);

    这个接口在Layer里不支持,在这里重载是为了报错


    void removeChild(CCNode* child, bool cleanup);

    删除子对象


    inline const char* getLayerName(){ return m_sLayerName.c_str(); }

    inline void setLayerName(const char *layerName){ m_sLayerName = layerName; }

    设置和获取Layer名字


    总结

    CCTMXLayer是CCSpriteBatchNode的派生类,所以也是一个批精灵。瓦片地图将其分成一层层的原因也是为了提高渲染的效率。

  • 相关阅读:
    消除 transition 闪屏
    解决audio和video在手机端无法自动播放问题
    css3让图文不能复制
    改变placeholder的字体颜色大小
    css3实现水平、垂直居中
    link 和@import 的区别
    JSON与对象的相互转换
    indexOf与includes的比较
    DOM盒子模型
    关于Meta标签的一些知识
  • 原文地址:https://www.cnblogs.com/new0801/p/6177215.html
Copyright © 2011-2022 走看看