123456789101112131415161718192021222324 |
- import ViewObject from "../../main/ViewObject";
- /**
- * 控制设置
- */
- const {ccclass, property} = cc._decorator;
- @ccclass
- export default class TapController extends ViewObject {
- @property(cc.Label)
- label: cc.Label = null;
-
- onLoad () {
- }
- start () {
- }
- // update (dt) {}
- }
|