• IOS cocos2d笔记1


    结点添加、删除、获取
    1.结点:CCNode * childNode = [CCNode node];

    2.加入结点
    [myNode addChild:childNode z:0 tag:123];//z决定绘制的顺序

    3.获取结点
    CCNode * retrieveNoded = [myNode getChildeByTag:123];

    4.删除 cleanup:YES正在运行的动作停止
    [myNode removeChildByTag:123 cleanup:YES];
    [myNode removeChild:retrievedNode];
    [myNode removeAllChildrenWithCleanup:YES];
    [myNode removeFromParentAndCleanup:YES];

    动作处理
    CCAction * action = [CCBlink actionWithDuration:10 blinks:20];
    action.tag = 234;
    1.运行
    [myNode runAction:action];
    2.获得
    getActionByTag
    3.停止
    stopActionByTag:
    stopAction:
    [myNode stopAllActions]

    消息调度
    [self scheduleUpdate];
    -(void) update:(ccTime)delta
    {}

    [self schedule:@selector(xxx:) interval:0.1f];
    [self scheculeOnce:@selector(xxx:) delay:600];
    //取消计时
    [self unscheduleAllSelectors];
    [self unscheduleUpdate];
    [self unschedule:@selector(xxx:)];
    [self unschedule:_cmd];//_cmd相当于@selector(本身)
    float nextUpdate = CCRANDOM_0_1()*10;
    //附加,了解即可
    [self scheduleUpdateWithPriority:1];//-1,越小优先调用

    Director类(类似ScreenMgr类)
    1.获取
    [Director sharedDirector];
    2.场景运行
    runWithScene、replaceScene、pushScene
    3.场景添加进CCTransitionScene;

  • 相关阅读:
    Tair分布式key/value存储
    Ehcache详细解读
    专访阿里中间件高级专家沈询
    boost之词法解析器spirit
    快速部署Python应用:Nginx+uWSGI配置详解
    CMake如何执行shell命令
    show engine innodb status 详解
    HTTP Request header
    json python api
    mysql 索引对于select速度提升作用实验
  • 原文地址:https://www.cnblogs.com/hewei2012/p/3217779.html
Copyright © 2020-2023  润新知