CocosCreator 创建全局对象 == 同单例效果一致

来源:互联网 发布:淘宝付款截图生成器 编辑:程序博客网 时间:2024/05/21 01:53
创建 SceneController.js

cc.Class({
extends:cc.Component,

properties: {
index :999,
},

// use this for initialization
onLoad:function () {

},
init:function () {


}
// called every frame, uncomment this function to activate update callback
// update: function (dt) {

// },
});
添加全局变量定义
window.SceneController= new (require('SceneController'))()

test.js
测试
cc.log("======222"+ SceneController.index);
SceneController.index++;
cc.log("======222"+ SceneController.index);