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.
26 lines
543 B
26 lines
543 B
4 weeks ago
|
import Common from "../../FrameWork/Util/Common";
|
||
|
import Game from "../../Scripts/Game";
|
||
|
|
||
|
const { ccclass, property } = cc._decorator;
|
||
|
|
||
|
@ccclass
|
||
|
export default class TipsBtnScript extends cc.Component {
|
||
|
|
||
|
subLevel: 0
|
||
|
start() {
|
||
|
|
||
|
}
|
||
|
|
||
|
// setCurTipsSubLevel(subLevel) {
|
||
|
// this.subLevel = subLevel
|
||
|
// }
|
||
|
|
||
|
// openTipsNodeClickEvent() {
|
||
|
// Game.ins.stopTime()
|
||
|
// Common.getPrefabFromBundle("WordGame", "gameComPrefab/tipPrefab", null, (node: cc.Node) => {
|
||
|
|
||
|
// })
|
||
|
// }
|
||
|
// update (dt) {}
|
||
|
}
|