12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- // 排行榜控制器
- cc.Class({
- extends: cc.Component,
- properties: {
- // panel: {
- // default: null,
- // type: cc.Sprite,
- // },
- },
- // LIFE-CYCLE CALLBACKS:
- // onLoad () {},
- start () {
- // this.initWx();
- // this.initValues();
- console.log("Start ... ")
- },
- // 初始化
- // 初始化数据
- initValues:function() {
- this.texture = new cc.Texture2D();
- },
- // 初始化微信数据
- initWx:function() {
- if (cc.sys.platform == cc.sys.WECHAT_GAME) {
- // 配置上传的数据
- var kvScore = {}
- kvScore.key = "score"
- kvScore.value = "100"
- var kvList = [kvScore]
- wx.setUserCloudStorage({
- KVDataList : kvList,
- success : function() {
- console.log ("设置成功")
- },
- fail : function() {
- console.log ("设置失败")
- },
- complete : function() {
- console.log ("设置结束")
- }
- })
- }
- },
-
- // 事件
- backClicked:function() {
- cc.director.loadScene("startscene")
- },
- });
|