// Learn TypeScript: // - https://docs.cocos.com/creator/manual/en/scripting/typescript.html // Learn Attribute: // - https://docs.cocos.com/creator/manual/en/scripting/reference/attributes.html // Learn life-cycle callbacks: // - https://docs.cocos.com/creator/manual/en/scripting/life-cycle-callbacks.html import GameData from "./GameData"; import { GameTool } from "./tool/GameTool"; import { StorageMessage } from "./tool/Storage"; const {ccclass, property} = cc._decorator; @ccclass export default class NewClass extends cc.Component { @property(cc.Label) label: cc.Label = null; @property text: string = 'hello'; // LIFE-CYCLE CALLBACKS: // onLoad () {} start () { // GameTool.Authentication(); } click(){ cc.director.loadScene("GuideScene"); // cc.director.loadScene("GameScene"); } openRank(){ cc.director.loadScene("RankScene"); } // update (dt) {} }