grout.threejs.base.ts 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. import * as THREE from 'three';
  2. // import * as dat from 'dat.gui';
  3. // const gui = new dat.GUI();
  4. // gui.domElement.style = 'position:absolute;top:100px;left:10px;z-index:99999999999999';
  5. class ChamberBase {
  6. model;
  7. modelName = 'grout';
  8. group: THREE.Object3D | null = null;
  9. constructor(model) {
  10. this.model = model;
  11. }
  12. addLight() {
  13. const directionalLight = new THREE.DirectionalLight(0xffffff, 1.2);
  14. directionalLight.position.set(-0.88, 10, 42.4);
  15. this.group?.add(directionalLight);
  16. directionalLight.target = this.group as THREE.Object3D;
  17. // gui.add(directionalLight.position, 'x', -500, 500);
  18. // gui.add(directionalLight.position, 'y', -500, 500);
  19. // gui.add(directionalLight.position, 'z', -500, 500);
  20. const spotLight = new THREE.SpotLight();
  21. spotLight.angle = Math.PI / 2;
  22. spotLight.penumbra = 0;
  23. spotLight.castShadow = true;
  24. spotLight.intensity = 1;
  25. spotLight.shadow.camera.near = 0.5; // default
  26. spotLight.shadow.focus = 1.2;
  27. spotLight.shadow.bias = -0.000002;
  28. spotLight.position.set(89.8, 144, 314);
  29. this.group?.add(spotLight);
  30. // gui.add(spotLight.position, 'x', -600, 600);
  31. // gui.add(spotLight.position, 'y', -600, 800);
  32. // gui.add(spotLight.position, 'z', -500, 1000);
  33. }
  34. addChamberText(selectData) {
  35. //
  36. }
  37. mountedThree() {
  38. return new Promise((resolve) => {
  39. this.model.setModel([this.modelName]).then((gltf) => {
  40. this.group = gltf[0];
  41. if (this.group) {
  42. this.group?.scale.set(12.5, 12.5, 12.5);
  43. this.group.position.y = 4;
  44. resolve(null);
  45. this.addLight();
  46. }
  47. });
  48. });
  49. }
  50. destroy() {
  51. this.model.clearGroup(this.group);
  52. this.model = null;
  53. this.group = null;
  54. }
  55. }
  56. export default ChamberBase;