cocos create 单例

作者: 流氓a | 来源:发表于2018-05-01 16:22 被阅读1364次

    初学create 对js还不是很了解 写了个单例模式 欢迎吐槽

    var Single = cc.Class({

        statics: {

            instance: null

        },

        extends: cc.Component,

        properties: {

            bgOne:'张三',

            bgTwo:'李四',

            speed:50000,

        },

        show(){

            console.log('我是一个单例')

        }

    });

    Single.instance = new Single();

    module.exports = Single;

    //调用-----------------------------------------

    var Single = require('Single ');

    onLoad () {

            Single.instance.show()

       },

    相关文章

      网友评论

        本文标题:cocos create 单例

        本文链接:https://www.haomeiwen.com/subject/hhzwzxtx.html