You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
773 B
27 lines
773 B
// Learn TypeScript:
|
|
// - https://docs.cocos.com/creator/2.4/manual/en/scripting/typescript.html
|
|
// Learn Attribute:
|
|
// - https://docs.cocos.com/creator/2.4/manual/en/scripting/reference/attributes.html
|
|
// Learn life-cycle callbacks:
|
|
// - https://docs.cocos.com/creator/2.4/manual/en/scripting/life-cycle-callbacks.html
|
|
|
|
import User from "../FrameWork/User/User";
|
|
import Common5 from "../Platform/th/Common5";
|
|
import Game from "../Scripts/Game";
|
|
|
|
const {ccclass, property} = cc._decorator;
|
|
|
|
@ccclass
|
|
export default class CommLevel extends cc.Component {
|
|
|
|
@property([cc.Node])
|
|
allChaDian: cc.Node[] = Array<cc.Node>();
|
|
|
|
public static ins: CommLevel = null;
|
|
firstInStap = 0;
|
|
start () {
|
|
CommLevel.ins = this;
|
|
|
|
}
|
|
// update (dt) {}
|
|
}
|
|
|