TapController.ts 310 B

123456789101112131415161718192021222324
  1. import ViewObject from "../../main/ViewObject";
  2. /**
  3. * 控制设置
  4. */
  5. const {ccclass, property} = cc._decorator;
  6. @ccclass
  7. export default class TapController extends ViewObject {
  8. @property(cc.Label)
  9. label: cc.Label = null;
  10. onLoad () {
  11. }
  12. start () {
  13. }
  14. // update (dt) {}
  15. }