|
@@ -4,6 +4,7 @@ import FanLocal from './fanLocal.threejs.base';
|
|
|
import FanLocalDual from './fanLocalDual.threejs.base';
|
|
|
import { animateCamera } from '/@/utils/threejs/util';
|
|
|
import useEvent from '../../../../utils/threejs/useEvent';
|
|
|
+import { modal } from 'vxe-table';
|
|
|
|
|
|
/** 模型总控制器 */
|
|
|
let model: UseThree;
|
|
@@ -24,6 +25,7 @@ const { mouseDownFn } = useEvent();
|
|
|
function dispatchMouseEvent(event) {
|
|
|
if (event.button == 0 && model && group) {
|
|
|
mouseDownFn(model, group, event, () => {});
|
|
|
+ console.log(model.camera, model.orbitControls);
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -93,16 +95,20 @@ export function setModelType(modelType: 'fanLocal' | 'fanLocalDual' | string, su
|
|
|
group.children.forEach((e) => {
|
|
|
e.visible = true;
|
|
|
});
|
|
|
- const oldCameraPosition = { x: -693, y: 474, z: 398 };
|
|
|
- const position = { x: 14.826074594663222, y: 16.901762713393836, z: 36.459944037951004 };
|
|
|
- await animateCamera(
|
|
|
- oldCameraPosition,
|
|
|
- { x: 0, y: 0, z: 0 },
|
|
|
- { x: position.x, y: position.y, z: position.z },
|
|
|
- { x: 0, y: 0, z: 0 },
|
|
|
- model,
|
|
|
- 0.8
|
|
|
- );
|
|
|
+ // const oldCameraPosition = { x: -693, y: 474, z: 398 };
|
|
|
+ // const position = { x: 14.826074594663222, y: 16.901762713393836, z: 36.459944037951004 };
|
|
|
+ // await animateCamera(
|
|
|
+ // oldCameraPosition,
|
|
|
+ // { x: 0, y: 0, z: 0 },
|
|
|
+ // { x: position.x, y: position.y, z: position.z },
|
|
|
+ // { x: 0, y: 0, z: 0 },
|
|
|
+ // model,
|
|
|
+ // 0.8
|
|
|
+ // );
|
|
|
+
|
|
|
+ // 模型不同需要不同的初始角度与位置
|
|
|
+ const oldCameraPosition = { x: 615, y: 275, z: 744 };
|
|
|
+ await animateCamera(oldCameraPosition, { x: 0, y: 0, z: 0 }, { x: -1.85, y: 13.58, z: 37.39 }, { x: -1.83, y: 2.58, z: -0.75 }, model, 0.8);
|
|
|
resolve(null);
|
|
|
}, 400);
|
|
|
}
|
|
@@ -130,10 +136,11 @@ export function mountedThree(sceneSelctor: string, cssSelectors: string[]) {
|
|
|
});
|
|
|
const model2 = new FanLocalDual(model);
|
|
|
await model2.mountedThree();
|
|
|
- modelContextList.push({
|
|
|
- type: 'fanLocalDual',
|
|
|
- context: model2,
|
|
|
- });
|
|
|
+ // 暂时先不加双行
|
|
|
+ // modelContextList.push({
|
|
|
+ // type: 'fanLocalDual',
|
|
|
+ // context: model2,
|
|
|
+ // });
|
|
|
|
|
|
initEventListender();
|
|
|
setCamera();
|