1234567891011121314151617181920212223242526272829303132333435363738 |
- // Learn cc.Class:
- // - [Chinese] http://www.cocos.com/docs/creator/scripting/class.html
- // - [English] http://www.cocos2d-x.org/docs/editors_and_tools/creator-chapters/scripting/class/index.html
- // Learn Attribute:
- // - [Chinese] http://www.cocos.com/docs/creator/scripting/reference/attributes.html
- // - [English] http://www.cocos2d-x.org/docs/editors_and_tools/creator-chapters/scripting/reference/attributes/index.html
- // Learn life-cycle callbacks:
- // - [Chinese] http://www.cocos.com/docs/creator/scripting/life-cycle-callbacks.html
- // - [English] http://www.cocos2d-x.org/docs/editors_and_tools/creator-chapters/scripting/life-cycle-callbacks/index.html
- cc.Class({
- extends: cc.Component,
- properties: {
- },
- // LIFE-CYCLE CALLBACKS:
- // onLoad () {},
- start () {
- },
- enterSence: function(lastSenceName,senceName)
- {
- this.node.getChildByName(lastSenceName).active = false;
- this.node.getChildByName(senceName).active = true;
- if (senceName == "Game")
- {
- this.node.getChildByName(senceName).getComponent("GameSence").startGame();
- }
- }
- // update (dt) {},
- });
|