| 12345678910111213141516 |
- import { MapMove } from './MapMove';
- const { ccclass, property } = cc._decorator;
- /**
- * @description 使地图中的节点快速移动到视角中心
- * @author Soonsky
- */
- @ccclass
- export class MoveToCenter extends cc.Component {
- @property({ type: MapMove, tooltip: "地图移动控件" }) mapMove: MapMove = null;
- public move(position?: cc.Vec3): void {
- return
- this.mapMove.moveTo(position ? position : this.node.position);
- }
- }
|