CoCosCreator脚本学习(二)

start: function () {

        this.node.active =false; //设置属性的激活状态

        var label = this.getComponent(cc.Label); //获取子节点

        var text = 'started';

        label.string = text;

        var cannons = this.node.children;//查找子节点

        this.node.getChildByName("Cannon 01");//通过节点名获取节点

        this.backNode = cc.find("Canvas/Menu/Back");//全局名字查找

        window.Global = {

            backNode: null,

            backLabel: null,

        };//定义全局变量

    }

你可能感兴趣的:(CocosCreator)