ElementImageAction.ts 296 B

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