SubwayViewController.ts 362 B

12345678910111213141516171819
  1. import { Component, _decorator, v3, Collider, Layers, CapsuleCollider } from "cc";
  2. import { Subway } from "../Subway";
  3. const { ccclass } = _decorator;
  4. /** 地铁点击 */
  5. @ccclass('SubwayViewController')
  6. export class SubwayViewController extends Component {
  7. /** 地铁对象 */
  8. subway: Subway = null!;
  9. onLoad() {
  10. }
  11. onDestroy() {
  12. }
  13. }