gate.threejs.three.ts 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608
  1. import * as THREE from 'three';
  2. import { CSS2DObject } from 'three/examples/jsm/renderers/CSS2DRenderer.js';
  3. import { getTextCanvas, renderVideo } from '/@/utils/threejs/util';
  4. import UseThree from '../../../../utils/threejs/useThree';
  5. import { drawHot } from '/@/utils/threejs/util';
  6. import { useAppStore } from '/@/store/modules/app';
  7. // const gui = new dat.GUI();
  8. // gui.domElement.style = 'position:absolute;top:10px;right:10px;z-index:99999999999999';
  9. class Fm1 {
  10. modelName = 'fm';
  11. model; //
  12. group;
  13. isLRAnimation = true; // 是否开启左右摇摆动画
  14. direction = 1; // 摇摆方向
  15. animationTimer: NodeJS.Timeout | null = null; // 摇摆开启定时器
  16. player1;
  17. player2;
  18. deviceDetailCSS3D;
  19. playerStartClickTime1 = new Date().getTime();
  20. playerStartClickTime2 = new Date().getTime();
  21. frontClock = new THREE.Clock();
  22. backClock = new THREE.Clock();
  23. appStore = useAppStore();
  24. clipActionArr = {
  25. frontDoor: null as unknown as THREE.AnimationAction,
  26. backDoor: null as unknown as THREE.AnimationAction,
  27. };
  28. constructor(model, playerVal1, playerVal2) {
  29. this.model = model;
  30. this.player1 = playerVal1;
  31. this.player2 = playerVal2;
  32. }
  33. addLight(scene) {
  34. const pointLight2 = new THREE.PointLight(0xffeeee, 0.8, 300);
  35. pointLight2.position.set(-113, 29, 10);
  36. // light2.castShadow = true
  37. pointLight2.shadow.bias = -0.05;
  38. scene.add(pointLight2);
  39. // const pointLightHelper2 = new THREE.PointLightHelper( pointLight2, 1 );
  40. // scene.add( pointLightHelper2 );
  41. const pointLight3 = new THREE.PointLight(0xffffff, 0.8, 100);
  42. pointLight3.position.set(0, 30, 3);
  43. // light2.castShadow = true
  44. pointLight3.shadow.bias = -0.05;
  45. scene.add(pointLight3);
  46. // const pointLightHelper = new THREE.PointLightHelper( pointLight3, 1 );
  47. // scene.add( pointLightHelper );
  48. const pointLight4 = new THREE.PointLight(0xffeeee, 0.6, 100);
  49. pointLight4.position.set(-14, 29, 13);
  50. // light2.castShadow = true
  51. pointLight4.shadow.bias = -0.05;
  52. scene.add(pointLight4);
  53. // const pointLightHelper4 = new THREE.PointLightHelper( pointLight4, 1 );
  54. // scene.add( pointLightHelper4 );
  55. const pointLight5 = new THREE.PointLight(0xffffff, 0.8, 100);
  56. pointLight5.position.set(80, 43, -5.3);
  57. // light2.castShadow = true
  58. pointLight5.shadow.bias = -0.05;
  59. scene.add(pointLight5);
  60. // const pointLightHelper5 = new THREE.PointLightHelper( pointLight5, 1 );
  61. // scene.add( pointLightHelper5 );
  62. const pointLight6 = new THREE.PointLight(0xffffff, 1, 300);
  63. // pointLight6.position.set(-47, 49, 12.9)
  64. pointLight6.position.set(-7, 40, 9);
  65. // light2.castShadow = true
  66. pointLight6.shadow.bias = -0.05;
  67. scene.add(pointLight6);
  68. // const pointLightHelper6 = new THREE.PointLightHelper( pointLight6, 1 );
  69. // scene.add( pointLightHelper6 );
  70. const pointLight7 = new THREE.PointLight(0xffffff, 0.8, 300);
  71. pointLight7.position.set(45, 51, -4.1);
  72. // light2.castShadow = true
  73. pointLight7.shadow.bias = -0.05;
  74. scene.add(pointLight7);
  75. // const pointLightHelper7 = new THREE.PointLightHelper( pointLight7, 1 );
  76. // scene.add( pointLightHelper7 );
  77. // const directionalLight = new THREE.DirectionalLight(0xffffff, 0.5);
  78. // directionalLight.target = group;
  79. // directionalLight.position.set(-18, 20, 39);
  80. // directionalLight.rotation.set(1.3, 0.3, 5.8);
  81. // scene.add(directionalLight);
  82. // const helper = new THREE.DirectionalLightHelper(directionalLight, 5);
  83. // scene.add(helper);
  84. const spotLight = new THREE.SpotLight();
  85. spotLight.angle = Math.PI / 16;
  86. spotLight.penumbra = 0;
  87. // spotLight.castShadow = true;
  88. spotLight.position.set(-231, 463, 687);
  89. scene.add(spotLight);
  90. // spotLight.shadow.mapSize.width = 1500; // default
  91. // spotLight.shadow.mapSize.height = 800; // default
  92. spotLight.shadow.camera.near = 0.5; // default
  93. spotLight.shadow.camera.far = 1000; // default
  94. spotLight.shadow.focus = 1.2;
  95. spotLight.shadow.bias = -0.000002;
  96. // const spotLightHelper = new THREE.SpotLightHelper(spotLight);
  97. // scene.add(spotLightHelper);
  98. // model.canvasContainer?.appendChild(gui.domElement);
  99. // gui.add(directionalLight.position, 'x', -100, 100).step(1);
  100. // gui.add(directionalLight.position, 'y', -100, 100).step(1);
  101. // gui.add(directionalLight.position, 'z', -100, 100).step(1);
  102. // gui.add(directionalLight.rotation, 'x', -Math.PI, 2 * Math.PI).step(0.1);
  103. // gui.add(directionalLight.rotation, 'y', -Math.PI, 2 * Math.PI).step(0.1);
  104. // gui.add(directionalLight.rotation, 'z', -Math.PI, 2 * Math.PI).step(0.1);
  105. // gui.add(spotLight, 'angle', 0, Math.PI / 2);
  106. // gui.add(spotLight, 'distance', 0, 1000);
  107. // gui.add(pointLight6.position, 'x', -200, 200)
  108. // gui.add(pointLight6.position, 'y', -200, 200)
  109. // gui.add(pointLight6.position, 'z', -200, 200)
  110. }
  111. // 重置摄像头
  112. resetCamera() {
  113. this.model.camera.far = 274;
  114. this.model.orbitControls?.update();
  115. this.model.camera.updateProjectionMatrix();
  116. }
  117. // 设置模型位置
  118. setModalPosition() {
  119. this.group?.scale.set(22, 22, 22);
  120. this.group?.position.set(-20, 20, 9);
  121. }
  122. /* 添加监控数据 */
  123. addFmText(selectData) {
  124. if (!this.group) {
  125. return;
  126. }
  127. const textArr = [
  128. {
  129. text: `远程控制自动风门`,
  130. font: 'normal 30px Arial',
  131. color: '#00FF00',
  132. strokeStyle: '#007400',
  133. x: 120,
  134. y: 100,
  135. },
  136. {
  137. text: `压力(Pa):`,
  138. font: 'normal 30px Arial',
  139. color: '#00FF00',
  140. strokeStyle: '#007400',
  141. x: 0,
  142. y: 155,
  143. },
  144. {
  145. text: `${selectData.frontRearDP}`,
  146. font: 'normal 30px Arial',
  147. color: '#00FF00',
  148. strokeStyle: '#007400',
  149. x: 290,
  150. y: 155,
  151. },
  152. {
  153. text: `动力源压力(MPa): `,
  154. font: 'normal 30px Arial',
  155. color: '#00FF00',
  156. strokeStyle: '#007400',
  157. x: 0,
  158. y: 215,
  159. },
  160. {
  161. text: ` ${selectData.sourcePressure}`,
  162. font: 'normal 30px Arial',
  163. color: '#00FF00',
  164. strokeStyle: '#007400',
  165. x: 280,
  166. y: 215,
  167. },
  168. {
  169. text: `故障诊断:`,
  170. font: 'normal 30px Arial',
  171. color: '#00FF00',
  172. strokeStyle: '#007400',
  173. x: 0,
  174. y: 275,
  175. },
  176. {
  177. text: `${selectData.fault}`,
  178. font: 'normal 30px Arial',
  179. color: '#00FF00',
  180. strokeStyle: '#007400',
  181. x: 280,
  182. y: 275,
  183. },
  184. {
  185. text: `煤炭科学技术研究院有限公司研制`,
  186. font: 'normal 28px Arial',
  187. color: '#00FF00',
  188. strokeStyle: '#007400',
  189. x: 20,
  190. y: 325,
  191. },
  192. ];
  193. //
  194. getTextCanvas(526, 346, textArr, '').then((canvas: HTMLCanvasElement) => {
  195. const textMap = new THREE.CanvasTexture(canvas); // 关键一步
  196. textMap.encoding = THREE.sRGBEncoding;
  197. const textMaterial = new THREE.MeshBasicMaterial({
  198. // 关于材质并未讲解 实操即可熟悉 这里是漫反射类似纸张的材质,对应的就有高光类似金属的材质.
  199. map: textMap, // 设置纹理贴图
  200. transparent: true,
  201. side: THREE.FrontSide, // 这里是双面渲染的意思
  202. });
  203. textMaterial.blending = THREE.CustomBlending;
  204. const monitorPlane = this.group.getObjectByName('monitorText');
  205. if (monitorPlane) {
  206. monitorPlane.material = textMaterial;
  207. } else {
  208. const planeGeometry = new THREE.PlaneGeometry(526, 346); // 平面3维几何体PlaneGeometry
  209. const planeMesh = new THREE.Mesh(planeGeometry, textMaterial);
  210. planeMesh.name = 'monitorText';
  211. planeMesh.scale.set(0.002, 0.002, 0.002);
  212. planeMesh.position.set(-1.255, 0.09, -0.41);
  213. this.group.add(planeMesh);
  214. }
  215. });
  216. }
  217. /** 添加热点 */
  218. drawHots() {
  219. const hotPositions = [
  220. { x: -0.37, y: 0.26, z: -0.32 },
  221. { x: 0.28, y: -0.2, z: -0.43 },
  222. { x: 0.55, y: -0.22, z: -0.38 },
  223. ];
  224. for (let i = 0; i < 3; i++) {
  225. const hotPoint = drawHot(0.1);
  226. const position = hotPositions[i];
  227. // hotPoint.scale.set(0.3, 0.3, 0.3);
  228. hotPoint.position.set(position.x, position.y, position.z);
  229. hotPoint.name = 'hotPoint' + i;
  230. this.group?.add(hotPoint);
  231. }
  232. }
  233. /* 风门动画 */
  234. render() {
  235. if (!this.model) {
  236. return;
  237. }
  238. if (this.isLRAnimation && this.group) {
  239. // 左右摇摆动画
  240. if (Math.abs(this.group.rotation.y) >= 0.2) {
  241. this.direction = -this.direction;
  242. this.group.rotation.y += 0.00002 * 30 * this.direction;
  243. } else {
  244. this.group.rotation.y += 0.00002 * 30 * this.direction;
  245. }
  246. }
  247. // // //自发光
  248. // const screen = group.getObjectByName('对象156');
  249. // if (screen) {
  250. // model.renderer.clearDepth();
  251. // screen.layers.enable(31);
  252. // !!renderBloomPass && renderBloomPass(group);
  253. // }
  254. // 风门开关动画
  255. const frontDelta = this.frontClock?.getElapsedTime() + 0.5;
  256. const backDelta = this.backClock?.getElapsedTime() + 0.5;
  257. if (this.model.mixers[0]) this.model.mixers[0]?.update(frontDelta); //前门
  258. if (this.model.mixers[1]) this.model.mixers[1]?.update(backDelta); // 后门
  259. }
  260. /* 点击风窗,风窗全屏 */
  261. mousedownModel(intersects: THREE.Intersection<THREE.Object3D<THREE.Event>>[]) {
  262. this.isLRAnimation = false;
  263. if (this.animationTimer) {
  264. clearTimeout(this.animationTimer);
  265. this.animationTimer = null;
  266. }
  267. // 判断是否点击到视频
  268. intersects.find((intersect) => {
  269. const mesh = intersect.object;
  270. if (mesh.name === 'player1') {
  271. if (new Date().getTime() - this.playerStartClickTime1 < 400) {
  272. // model.orbitControls?.dispatchEvent.call(model.orbitControls, { type: 'end' })
  273. // 双击,视频放大
  274. if (this.player1) {
  275. this.player1.requestFullscreen();
  276. }
  277. }
  278. this.playerStartClickTime1 = new Date().getTime();
  279. return true;
  280. } else if (mesh.name === 'player2') {
  281. if (new Date().getTime() - this.playerStartClickTime2 < 400) {
  282. // model.orbitControls?.dispatchEvent.call(model.orbitControls, { type: 'end' })
  283. // 双击,视频放大
  284. if (this.player2) {
  285. this.player2.requestFullscreen();
  286. }
  287. }
  288. this.playerStartClickTime2 = new Date().getTime();
  289. return true;
  290. } else if (mesh.name.startsWith('hotPoint')) {
  291. if (this.deviceDetailCSS3D) {
  292. this.deviceDetailCSS3D.position.set(mesh.position.x + 0.035, mesh.position.y + 0.66, mesh.position.z + 0.02);
  293. console.log('[ deviceDetailCSS3D.position ] >', this.deviceDetailCSS3D.position);
  294. this.deviceDetailCSS3D.visible = true;
  295. return true;
  296. }
  297. } else {
  298. this.deviceDetailCSS3D.visible = false;
  299. console.log('[ 点击事件 ] >');
  300. }
  301. return false;
  302. });
  303. }
  304. mouseUpModel() {
  305. // 10s后开始摆动
  306. if (!this.animationTimer && !this.isLRAnimation) {
  307. this.animationTimer = setTimeout(() => {
  308. this.isLRAnimation = true;
  309. }, 10000);
  310. }
  311. }
  312. /* 提取风门序列帧,初始化前后门动画 */
  313. initAnimation() {
  314. const fmGroup = this.group?.getObjectByName('Fm-door');
  315. if (fmGroup) {
  316. const tracks = fmGroup.animations[0].tracks;
  317. const fontTracks: any[] = [],
  318. backTracks: any[] = [];
  319. for (let i = 0; i < tracks.length; i++) {
  320. const track = tracks[i];
  321. if (track.name.startsWith('qianmen')) {
  322. fontTracks.push(track);
  323. } else if (track.name.startsWith('houmen')) {
  324. backTracks.push(track);
  325. }
  326. }
  327. const frontDoor = new THREE.AnimationClip('frontDoor', 4, fontTracks);
  328. const frontMixer = new THREE.AnimationMixer(fmGroup);
  329. this.model.mixers.push(frontMixer);
  330. const frontClipAction = frontMixer.clipAction(frontDoor, fmGroup);
  331. frontClipAction.clampWhenFinished = true;
  332. frontClipAction.loop = THREE.LoopOnce;
  333. this.clipActionArr.frontDoor = frontClipAction;
  334. const backDoor = new THREE.AnimationClip('backDoor', 4, backTracks);
  335. const backMixer = new THREE.AnimationMixer(fmGroup);
  336. this.model.mixers.push(backMixer);
  337. const backClipAction = backMixer.clipAction(backDoor, fmGroup);
  338. backClipAction.clampWhenFinished = true;
  339. backClipAction.loop = THREE.LoopOnce;
  340. this.clipActionArr.backDoor = backClipAction;
  341. }
  342. }
  343. deviceDetailCard(position = { x: 0, y: 0, z: 0 }) {
  344. const element = document.getElementById('deviceCard') as HTMLElement;
  345. this.deviceDetailCSS3D = new CSS2DObject(element);
  346. this.deviceDetailCSS3D.name = 'deviceCard';
  347. this.deviceDetailCSS3D.position.set(position.x, position.y, position.z);
  348. this.deviceDetailCSS3D.visible = false;
  349. // this.model.scene.add(this.deviceDetailCSS3D);
  350. this.group.add(this.deviceDetailCSS3D);
  351. }
  352. // 播放动画
  353. play(handlerState, timeScale = 0.01) {
  354. let handler = () => {};
  355. switch (handlerState) {
  356. case 1: // 打开前门
  357. handler = () => {
  358. debugger;
  359. this.clipActionArr.frontDoor.paused = true;
  360. this.clipActionArr.frontDoor.reset();
  361. this.clipActionArr.frontDoor.time = 1.2;
  362. this.clipActionArr.frontDoor.timeScale = timeScale;
  363. this.clipActionArr.frontDoor.clampWhenFinished = true;
  364. this.clipActionArr.frontDoor.play();
  365. this.frontClock.start();
  366. };
  367. break;
  368. case 2: // 关闭前门
  369. handler = () => {
  370. debugger;
  371. this.clipActionArr.frontDoor.paused = true;
  372. this.clipActionArr.frontDoor.reset(); //
  373. this.clipActionArr.frontDoor.time = 4;
  374. this.clipActionArr.frontDoor.timeScale = -timeScale;
  375. this.clipActionArr.frontDoor.clampWhenFinished = true;
  376. this.clipActionArr.frontDoor.play();
  377. this.frontClock.start();
  378. };
  379. break;
  380. case 3: // 打开后门
  381. handler = () => {
  382. debugger;
  383. this.clipActionArr.backDoor.paused = true;
  384. this.clipActionArr.backDoor.reset();
  385. this.clipActionArr.backDoor.time = 1.2;
  386. this.clipActionArr.backDoor.timeScale = timeScale;
  387. this.clipActionArr.backDoor.clampWhenFinished = true;
  388. this.clipActionArr.backDoor.play();
  389. this.backClock.start();
  390. };
  391. break;
  392. case 4: // 关闭后门
  393. handler = () => {
  394. debugger;
  395. this.clipActionArr.backDoor.paused = true;
  396. this.clipActionArr.backDoor.reset();
  397. this.clipActionArr.backDoor.time = 4;
  398. this.clipActionArr.backDoor.timeScale = -timeScale;
  399. this.clipActionArr.backDoor.clampWhenFinished = true;
  400. this.clipActionArr.backDoor.play();
  401. this.backClock.start();
  402. };
  403. break;
  404. case 5: // 打开前后门
  405. handler = () => {
  406. debugger;
  407. this.clipActionArr.backDoor.paused = true;
  408. this.clipActionArr.frontDoor.paused = true;
  409. this.clipActionArr.frontDoor.reset();
  410. this.clipActionArr.frontDoor.time = 0;
  411. this.clipActionArr.frontDoor.timeScale = 0.01;
  412. this.clipActionArr.frontDoor.clampWhenFinished = true;
  413. this.clipActionArr.frontDoor.play();
  414. this.clipActionArr.backDoor.reset();
  415. this.clipActionArr.backDoor.time = 0;
  416. this.clipActionArr.backDoor.timeScale = 0.01;
  417. this.clipActionArr.backDoor.clampWhenFinished = true;
  418. this.clipActionArr.backDoor.play();
  419. this.frontClock.start();
  420. this.backClock.start();
  421. };
  422. break;
  423. case 6: // 关闭前后门
  424. handler = () => {
  425. debugger;
  426. this.clipActionArr.backDoor.paused = true;
  427. this.clipActionArr.frontDoor.paused = true;
  428. this.clipActionArr.frontDoor.reset();
  429. this.clipActionArr.frontDoor.time = 4;
  430. this.clipActionArr.frontDoor.timeScale = -0.01;
  431. this.clipActionArr.frontDoor.clampWhenFinished = true;
  432. this.clipActionArr.frontDoor.play();
  433. this.clipActionArr.backDoor.reset();
  434. this.clipActionArr.backDoor.time = 4;
  435. this.clipActionArr.backDoor.timeScale = -0.01;
  436. this.clipActionArr.backDoor.clampWhenFinished = true;
  437. this.clipActionArr.backDoor.play();
  438. this.frontClock.start();
  439. this.backClock.start();
  440. };
  441. break;
  442. default:
  443. }
  444. handler();
  445. // model.clock.start();
  446. // const honglvdeng = group.getObjectByName('honglvdeng');
  447. // const material = honglvdeng.material;
  448. // setTimeout(() => {
  449. // if (handlerState === 2 || handlerState === 4 || handlerState === 6) {
  450. // material.color = new THREE.Color(0x00ff00);
  451. // } else {
  452. // material.color = new THREE.Color(0xff0000);
  453. // }
  454. // }, 1000);
  455. }
  456. mountedThree() {
  457. this.group = new THREE.Object3D();
  458. this.group.name = this.modelName;
  459. return new Promise((resolve) => {
  460. this.model = new UseThree('#damper3D', '', '#deviceDetail');
  461. this.model.setEnvMap('test1');
  462. this.model.renderer.toneMappingExposure = 1;
  463. this.model.scene?.add(this.group);
  464. this.group?.layers.enableAll();
  465. this.model.setGLTFModel(['Fm-door', 'Fm-wire', 'Fm-wall'], this.group).then(() => {
  466. this.setModalPosition();
  467. // 初始化左右摇摆动画;
  468. this.initAnimation();
  469. this.drawHots();
  470. this.deviceDetailCard();
  471. this.model.animate();
  472. if (this.model.camera.layers.mask == -1) this.model.camera.layers.toggle(1);
  473. setTimeout(async () => {
  474. const videoPlayer1 = document.getElementById('fm-player1')?.getElementsByClassName('vjs-tech')[0];
  475. const videoPlayer2 = document.getElementById('fm-player2')?.getElementsByClassName('vjs-tech')[0];
  476. if (!videoPlayer1 || !videoPlayer2) {
  477. const textArr = [
  478. {
  479. text: `无信号输入`,
  480. font: 'normal 40px Arial',
  481. color: '#009900',
  482. strokeStyle: '#002200',
  483. x: 170,
  484. y: 40,
  485. },
  486. ];
  487. getTextCanvas(560, 346, textArr, '').then((canvas: HTMLCanvasElement) => {
  488. const textMap = new THREE.CanvasTexture(canvas); // 关键一步
  489. const textMaterial = new THREE.MeshBasicMaterial({
  490. map: textMap, // 设置纹理贴图
  491. transparent: true,
  492. side: THREE.DoubleSide, // 这里是双面渲染的意思
  493. });
  494. textMaterial.blending = THREE.CustomBlending;
  495. const monitorPlane = this.group?.getObjectByName('noPlayer');
  496. if (monitorPlane) {
  497. monitorPlane.material = textMaterial;
  498. } else {
  499. const planeGeometry = new THREE.PlaneGeometry(100, 100); // 平面3维几何体PlaneGeometry
  500. const planeMesh = new THREE.Mesh(planeGeometry, textMaterial);
  501. if (!videoPlayer1) {
  502. planeMesh.name = 'noPlayer1';
  503. planeMesh.scale.set(0.011, 0.008, 0.011);
  504. planeMesh.position.set(-4.23, -0.28, -0.39);
  505. this.group?.add(planeMesh.clone());
  506. }
  507. if (!videoPlayer2) {
  508. planeMesh.name = 'noPlayer2';
  509. planeMesh.scale.set(0.012, 0.009, 0.012);
  510. planeMesh.position.set(4.33, -0.33, -0.39);
  511. this.group?.add(planeMesh.clone());
  512. }
  513. textMaterial.dispose();
  514. planeGeometry.dispose();
  515. }
  516. });
  517. } else {
  518. if (videoPlayer2) {
  519. const mesh = renderVideo(this.group, videoPlayer1, 'player1');
  520. mesh?.scale.set(-0.028, 0.0285, 1);
  521. mesh?.position.set(4.298, 0.02, -0.4);
  522. mesh.rotation.y = -Math.PI;
  523. this.group.add(mesh);
  524. }
  525. if (videoPlayer1) {
  526. const mesh = renderVideo(this.group, videoPlayer2, 'player2');
  527. mesh?.scale.set(-0.028, 0.0285, 1);
  528. mesh?.position.set(-4.262, 0.02, -0.4);
  529. mesh.rotation.y = -Math.PI;
  530. this.group.add(mesh);
  531. }
  532. }
  533. resolve(this.model);
  534. }, 0);
  535. });
  536. });
  537. }
  538. destroy() {
  539. if (this.model) {
  540. if (this.model.mixers[0]) {
  541. this.model.mixers[0].uncacheClip(this.clipActionArr.frontDoor.getClip());
  542. this.model.mixers[0].uncacheClip(this.clipActionArr.backDoor.getClip());
  543. this.model.mixers[0].uncacheAction(this.clipActionArr.frontDoor, this.group);
  544. this.model.mixers[0].uncacheAction(this.clipActionArr.backDoor, this.group);
  545. this.model.mixers[0].uncacheRoot(this.group);
  546. this.model.mixers[1].uncacheClip(this.clipActionArr.frontDoor.getClip());
  547. this.model.mixers[1].uncacheClip(this.clipActionArr.backDoor.getClip());
  548. this.model.mixers[1].uncacheAction(this.clipActionArr.frontDoor, this.group);
  549. this.model.mixers[1].uncacheAction(this.clipActionArr.backDoor, this.group);
  550. this.model.mixers[1].uncacheRoot(this.group);
  551. if (this.model.animations[0]) this.model.animations[0].tracks = [];
  552. }
  553. this.clipActionArr.backDoor = undefined;
  554. this.clipActionArr.frontDoor = undefined;
  555. this.model.mixers = [];
  556. this.model.deleteModal();
  557. this.model = null;
  558. this.group = null;
  559. // document.getElementById('damper3D').parentElement.remove(document.getElementById('damper3D'))
  560. }
  561. }
  562. }
  563. export default Fm1;