3

我为我的游戏创建了一个 UI。从 cocostudio 发布项目后,我得到了 .csb 文件。如何在我的游戏中使用它?

4

2 回答 2

5
Add the header file

#include“cocostudio.h”

节点* 节点 = CSLoader::createNode("background.csb");

this->addChild(node);

//get animation data

cocostudio::timeline::ActionTimeline* action = CSLoader::createTimeline("background.csb");

node->runAction(action);

action->gotoFrameAndPlay(0, true);

对你有帮助

于 2014-11-15T13:36:19.260 回答
4

以js为例:

    var node = ccs.csLoader.createNode("res/node.csb");
    var node_action = ccs.actionTimelineCache.createAction("res/node.csb");
    node.runAction(node_action);
    node.attr({
        scale: 0.6,
        x: 130,
        y: 10,
    })
    node_action.gotoFrameAndPlay(0, 40, true);
    this.addChild(node);    
于 2014-11-17T20:44:50.917 回答