lythreeframe 1.0.22 → 1.0.24

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (39) hide show
  1. package/dist/bundle.cjs.js +217 -141
  2. package/dist/bundle.esm.js +112 -39
  3. package/dist/index.d.ts +11 -7
  4. package/dist/lythreeframe/AssetManagement/AssetManager.d.ts +1 -1
  5. package/dist/lythreeframe/AssetManagement/AssetPointer/AssetPointer.d.ts +1 -1
  6. package/dist/lythreeframe/Factory/CameraFactory.d.ts +2 -2
  7. package/dist/lythreeframe/Frame/Controller.d.ts +1 -1
  8. package/dist/lythreeframe/Frame/World.d.ts +1 -1
  9. package/dist/lythreeframe/Geometry/PlaneGeometry.d.ts +1 -1
  10. package/dist/lythreeframe/Geometry/TriangleGeometry.d.ts +1 -1
  11. package/dist/lythreeframe/Library/Math.d.ts +5 -5
  12. package/dist/lythreeframe/Library/ResourceLibrary.d.ts +1 -1
  13. package/dist/lythreeframe/Object/Actor.d.ts +5 -5
  14. package/dist/lythreeframe/Object/Actors/Light/DirectionalLightActor.d.ts +3 -2
  15. package/dist/lythreeframe/Object/Actors/Shape/BoxActor.d.ts +1 -1
  16. package/dist/lythreeframe/Object/Actors/Shape/PlaneActor.d.ts +1 -1
  17. package/dist/lythreeframe/Object/Actors/Sky/SkyActor.d.ts +8 -0
  18. package/dist/lythreeframe/Object/Components/2D/2DComponent.d.ts +1 -2
  19. package/dist/lythreeframe/Object/Components/Camera/CameraComponent.d.ts +1 -1
  20. package/dist/lythreeframe/Object/Components/Component.d.ts +1 -1
  21. package/dist/lythreeframe/Object/Components/Light/DirectionalLight/DirectionalLightComponent.d.ts +1 -1
  22. package/dist/lythreeframe/Object/Components/Light/LightComponent.d.ts +1 -1
  23. package/dist/lythreeframe/Object/Components/Mesh/InstanceMesh/InstanceMeshComponent.d.ts +1 -1
  24. package/dist/lythreeframe/Object/Components/Mesh/InstanceMesh/MultiInstanceMeshComponent.d.ts +1 -1
  25. package/dist/lythreeframe/Object/Components/Mesh/MeshComponent.d.ts +6 -7
  26. package/dist/lythreeframe/Object/Components/Mesh/Shape/BoxComponent.d.ts +1 -1
  27. package/dist/lythreeframe/Object/Components/Mesh/Shape/PlaneComponent.d.ts +1 -1
  28. package/dist/lythreeframe/Object/Components/Mesh/Shape/SphereComponent.d.ts +1 -2
  29. package/dist/lythreeframe/Object/Components/Mesh/Sprite/SpriteComponent.d.ts +1 -1
  30. package/dist/lythreeframe/Object/Components/SceneComponent.d.ts +13 -13
  31. package/dist/lythreeframe/Object/Components/Sky/SkyComponent.d.ts +20 -0
  32. package/dist/lythreeframe/Object/PawnV2/Oribital.d.ts +2 -2
  33. package/dist/lythreeframe/Object/PawnV2/Pawn.d.ts +2 -2
  34. package/dist/lythreeframe/Object/PawnV2/TransformControl.d.ts +1 -1
  35. package/dist/lythreeframe/PostProcess/Param/Outline.d.ts +1 -1
  36. package/dist/lythreeframe/PostProcess/Param/ToneMapping.d.ts +1 -1
  37. package/dist/lythreeframe/PostProcess/WebGPUPostProcessFactory.d.ts +1 -1
  38. package/dist/lythreeframe/ThreeJsApp.d.ts +1 -1
  39. package/package.json +5 -5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lythreeframe",
3
- "version": "1.0.22",
3
+ "version": "1.0.24",
4
4
  "description": "Three.js 封装",
5
5
  "main": "dist/bundle.cjs.js",
6
6
  "module": "dist/bundle.esm.js",
@@ -12,18 +12,18 @@
12
12
  },
13
13
  "peerDependencies": {
14
14
  "gsap": "^3.12.2",
15
- "three": "^0.173.0",
16
- "@types/three": "^0.173.0"
15
+ "three": "^0.174.0",
16
+ "@types/three": "^0.174.0"
17
17
  },
18
18
  "files": [
19
19
  "dist"
20
20
  ],
21
21
  "devDependencies": {
22
22
  "@rollup/plugin-typescript": "^12.1.2",
23
- "@types/three": "^0.173.0",
23
+ "@types/three": "^0.174.0",
24
24
  "gsap": "^3.12.2",
25
25
  "rollup": "^4.35.0",
26
- "three": "^0.173.0",
26
+ "three": "^0.174.0",
27
27
  "tslib": "^2.8.1",
28
28
  "typescript": "^5.8.2"
29
29
  },