From fb29a61b78b11c222a9698835d4a1b18d8ed973e Mon Sep 17 00:00:00 2001
From: 龚焕茏 <2842157468@qq.com>
Date: 星期六, 24 八月 2024 12:09:47 +0800
Subject: [PATCH] refactor:合同考核结果详情调整
---
src/views/screen/components/screen-map-three/experience/world/enviroment.js | 47 ++++++++++++++++++++++++++++++++++++++++++-----
1 files changed, 42 insertions(+), 5 deletions(-)
diff --git a/src/views/screen/components/screen-map-three/experience/world/enviroment.js b/src/views/screen/components/screen-map-three/experience/world/enviroment.js
index f648da6..56a8fcf 100644
--- a/src/views/screen/components/screen-map-three/experience/world/enviroment.js
+++ b/src/views/screen/components/screen-map-three/experience/world/enviroment.js
@@ -13,9 +13,9 @@
this.textureLoader = new THREE.TextureLoader();
this.setSunLight();
- this.setRotateHola();
- this.setBackground();
- this.setCirclePoint();
+ // this.setRotateHola();
+ // this.setBackground();
+ // this.setCirclePoint();
// this.debuger();
}
@@ -117,13 +117,50 @@
}
}
+ destroy() {
+ this.disposeObject();
+ this.removeObject();
+ this.resetObject();
+ }
+
+ disposeObject() {
+ this.hola1.geometry.dispose();
+ this.hola1.material.dispose();
+ this.hola2.geometry.dispose();
+ this.hola2.material.dispose();
+ this.background.geometry.dispose();
+ this.background.material.dispose();
+ this.circle.geometry.dispose();
+ this.circle.material.dispose();
+ this.directionalLight1.dispose();
+ this.directionalLight2.dispose();
+ this.ambientLight.dispose();
+ }
+
+ removeObject() {
+ this.scene.remove(this.hola1);
+ this.scene.remove(this.hola2);
+ this.scene.remove(this.background);
+ this.scene.remove(this.circle);
+ }
+
+ resetObject() {
+ this.hola1 = null;
+ this.hola2 = null;
+ this.background = null;
+ this.circle = null;
+ this.directionalLight1 = null;
+ this.directionalLight2 = null;
+ this.ambientLight = null;
+ }
+
debuger() {
const gui = new GUI();
const folder1 = gui.addFolder('骞宠鍏�1');
const folder2 = gui.addFolder('骞宠鍏�2');
const folder3 = gui.addFolder('鐜鍏�');
-
+
folder1.add(this.directionalLight1.position, 'x').min(-200).max(200).step(1).name("x杞寸殑浣嶇疆");
folder1.add(this.directionalLight1.position, 'y').min(-200).max(200).step(1).name("y杞寸殑浣嶇疆");
folder1.add(this.directionalLight1.position, 'z').min(-200).max(200).step(1).name("z杞寸殑浣嶇疆");
@@ -137,4 +174,4 @@
folder3.add(this.ambientLight, 'intensity').min(0).max(1).step(0.1).name("寮哄害");
}
-}
\ No newline at end of file
+}
--
Gitblit v1.8.0