|
@@ -95,20 +95,31 @@ 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: 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);
|
|
|
+ if (type == 'fanLocal') {
|
|
|
+ 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
|
|
|
+ );
|
|
|
+ } else {
|
|
|
+ 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
|
|
|
+ );
|
|
|
+ }
|
|
|
+
|
|
|
resolve(null);
|
|
|
}, 400);
|
|
|
}
|
|
@@ -137,10 +148,10 @@ 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();
|