我为我的游戏创建了一个用户界面。 从cocostudio发布项目后,我有.csb文件。 如何在我的游戏中使用它?
答案 0 :(得分:4)
Add the header file
#包括" cocostudio.h"
Node * node = 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);
它会对你有所帮助
答案 1 :(得分: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);