|
|
|
@ -12,6 +12,7 @@ import { SceneManager } from "src/app/babylon/controller/scene-manager";
|
|
|
|
|
import { UIManager } from "src/app/babylon/controller/ui-manager"; |
|
|
|
|
import { BabylonTool } from "src/app/babylon/tool/babylon-tool"; |
|
|
|
|
import { BabylonUIStyleTool } from "src/app/babylon/tool/babylon-ui-style-tool"; |
|
|
|
|
import { GizmoTool } from "src/app/babylon/tool/gizmo-tool"; |
|
|
|
|
import { ParticleSystemTool } from "src/app/babylon/tool/particle-system-tool"; |
|
|
|
|
import { TsTool } from "src/app/babylon/tool/ts-tool"; |
|
|
|
|
import { MarkWindow } from "src/app/babylon/view/mark-window/mark-window"; |
|
|
|
@ -209,18 +210,21 @@ export class ModelInfo_mark extends ModelInfo {
|
|
|
|
|
else { |
|
|
|
|
//this.pointerDragBehavior.enabled = true;
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
GizmoTool.onPickMeshInfoObservable.notifyObservers(this); |
|
|
|
|
// SceneManager.Instance.defaultCamera.target = this.modelBox.absolutePosition.clone()
|
|
|
|
|
// SceneManager.Instance.defaultCamera.setTarget(this.modelBox.absolutePosition.clone());
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
else { |
|
|
|
|
//GizmoTool.onPickMeshInfoObservable.notifyObservers(null);
|
|
|
|
|
SceneManager.Instance.removeFromHighLight(this.modelBox as Mesh) |
|
|
|
|
if (this.pointerDragBehavior != null) { |
|
|
|
|
//this.pointerDragBehavior.enabled = false; //停止拖拽
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
let eventType: MarkInfoChangeType = select ? MarkInfoChangeType.Select : MarkInfoChangeType.UnSelect; |
|
|
|
|
Event_MarkInfoChange.dispatch(eventType, this); |
|
|
|
|
|
|
|
|
|