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

前端之家收集整理的这篇文章主要介绍了CocosCreator 创建全局对象 == 同单例效果一致前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
创建 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 );
原文链接:https://www.f2er.com/cocos2dx/338363.html

猜你在找的Cocos2d-x相关文章