LayerBtnAction.ts 274 B

1234567891011121314
  1. import { _decorator, Button, Component, Node } from 'cc';
  2. import { Global } from './Global';
  3. const { ccclass, property } = _decorator;
  4. @ccclass('LayerBtnAction')
  5. export class LayerBtnAction extends Component {
  6. start() {
  7. }
  8. update(deltaTime: number) {
  9. }
  10. }