|
@@ -1,8 +1,7 @@
|
|
|
import * as THREE from 'three';
|
|
|
-import { setModalCenter } from '/@/utils/threejs/util';
|
|
|
+
|
|
|
import Smoke from '../../comment/threejs/Smoke';
|
|
|
import { CSS3DObject } from 'three/examples/jsm/renderers/CSS3DRenderer';
|
|
|
-
|
|
|
|
|
|
|
|
|
|
|
@@ -71,10 +70,11 @@ class ModelContext {
|
|
|
this.model.setGLTFModel([this.modelName]).then(async (gltf) => {
|
|
|
this.group = gltf[0];
|
|
|
if (this.group) {
|
|
|
+
|
|
|
this.addLight();
|
|
|
- this.setModalPosition();
|
|
|
+ this.setModelPosition();
|
|
|
this.initModules();
|
|
|
- setModalCenter(this.group);
|
|
|
+ this.startAnimation(this.elements);
|
|
|
resolve(null);
|
|
|
}
|
|
|
});
|
|
@@ -89,10 +89,15 @@ class ModelContext {
|
|
|
}
|
|
|
|
|
|
|
|
|
- setModalPosition() {
|
|
|
+ setModelPosition() {
|
|
|
if (!this.group) return;
|
|
|
- this.group.scale.set(0.7, 0.7, 0.7);
|
|
|
- this.group.position.set(0, 6, -50);
|
|
|
+ this.group.scale.set(0.6, 0.6, 0.6);
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ this.group.position.set(0, 0, -60);
|
|
|
this.group.rotation.y = Math.PI / 2;
|
|
|
}
|
|
|
|
|
@@ -144,38 +149,47 @@ class ModelContext {
|
|
|
}
|
|
|
|
|
|
|
|
|
- async initModules() {
|
|
|
+ initModules() {
|
|
|
if (this.elements.length > 0) return;
|
|
|
- const curve1 = [
|
|
|
+
|
|
|
+ const curveFan1Right = [
|
|
|
{
|
|
|
- path0: new THREE.Vector3(10, 0, -10),
|
|
|
- path1: new THREE.Vector3(20, 0, -10),
|
|
|
+ path0: new THREE.Vector3(-85.685, 4.208, 43.895),
|
|
|
+ path1: new THREE.Vector3(-85.685, 2.208, 41.895),
|
|
|
+ isSpread: true,
|
|
|
+ spreadDirection: -1,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path0: new THREE.Vector3(-85.685, 2.208, 41.895),
|
|
|
+ path1: new THREE.Vector3(-85.685, 2.188, 35.327),
|
|
|
isSpread: false,
|
|
|
- spreadDirection: 0,
|
|
|
+ spreadDirection: 1,
|
|
|
},
|
|
|
{
|
|
|
- path0: new THREE.Vector3(10, 0, -10),
|
|
|
- path1: new THREE.Vector3(10, 0, -20),
|
|
|
- isSpread: true,
|
|
|
- spreadDirection: 1,
|
|
|
+ path0: new THREE.Vector3(-85.685, 2.188, 35.327),
|
|
|
+ path1: new THREE.Vector3(-85.685, 0.784, 33.086),
|
|
|
+ isSpread: false,
|
|
|
+ spreadDirection: 1,
|
|
|
},
|
|
|
];
|
|
|
const group1 = new THREE.Group();
|
|
|
const smoke1 = new Smoke('/model/img/texture-smoke.png', '#ffffff', 0, 0.75, 0.5, 400);
|
|
|
- smoke1.setPath(curve1);
|
|
|
- await smoke1.setPoints();
|
|
|
+ smoke1.setPath(curveFan1Right);
|
|
|
this.elements.push(smoke1);
|
|
|
|
|
|
- const element = document.getElementById('inputBox') as HTMLElement;
|
|
|
- if (element) {
|
|
|
- const fanLocalCSS3D = new CSS3DObject(element);
|
|
|
- fanLocalCSS3D.name = 'text1';
|
|
|
- fanLocalCSS3D.scale.set(0.04, 0.04, 0.04);
|
|
|
- fanLocalCSS3D.rotation.y = -Math.PI / 2;
|
|
|
- fanLocalCSS3D.position.set(-85.68, 5.97, -3.39);
|
|
|
- group1.add(fanLocalCSS3D);
|
|
|
- this.elements.push(fanLocalCSS3D);
|
|
|
- }
|
|
|
+ smoke1.setPoints().then(() => {
|
|
|
+ this.group?.add(smoke1.points);
|
|
|
+ });
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
|
|
|
this.modules.push({
|
|
|
name: 'state1',
|