DragDropManager.ts 239 B

1234567891011121314
  1. import { _decorator, Component, Node } from 'cc';
  2. const { ccclass, property } = _decorator;
  3. export class DragDropManager{
  4. /**
  5. * 开启拖拽
  6. * @param value
  7. */
  8. OpenChildDrag(value:Node):void{
  9. }
  10. }