@tresjs/cientos 3.7.0 → 4.0.0-next.0
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.
- package/README.md +7 -6
- package/dist/core/abstractions/GlobalAudio.d.ts +1 -1
- package/dist/core/abstractions/Lensflare/component.vue.d.ts +1 -1
- package/dist/core/abstractions/Levioso.vue.d.ts +1 -1
- package/dist/core/abstractions/MouseParallax.vue.d.ts +1 -1
- package/dist/core/abstractions/Reflector.vue.d.ts +1 -1
- package/dist/core/abstractions/Text3D.vue.d.ts +1 -1
- package/dist/core/abstractions/useFBO/component.vue.d.ts +1 -1
- package/dist/core/abstractions/useSurfaceSampler/component.vue.d.ts +1 -1
- package/dist/core/abstractions/useSurfaceSampler/index.d.ts +6 -0
- package/dist/core/controls/CameraControls.vue.d.ts +957 -1032
- package/dist/core/controls/KeyboardControls.vue.d.ts +1 -1
- package/dist/core/controls/MapControls.vue.d.ts +1 -1
- package/dist/core/controls/OrbitControls.vue.d.ts +891 -961
- package/dist/core/controls/PointerLockControls.vue.d.ts +1 -1
- package/dist/core/controls/ScrollControls.vue.d.ts +1 -1
- package/dist/core/controls/TransformControls.vue.d.ts +1 -1
- package/dist/core/loaders/SVG/component.vue.d.ts +1 -1
- package/dist/core/loaders/useFBX/component.vue.d.ts +44 -3
- package/dist/core/loaders/useGLTF/component.vue.d.ts +31 -1
- package/dist/core/loaders/useGLTF/index.d.ts +1 -1
- package/dist/core/materials/blurPass.d.ts +22 -0
- package/dist/core/materials/convolutionMaterial.d.ts +7 -0
- package/dist/core/materials/customShaderMaterial/index.vue.d.ts +2 -2
- package/dist/core/materials/index.d.ts +2 -1
- package/dist/core/materials/meshGlassMaterial/index.vue.d.ts +1 -1
- package/dist/core/materials/meshReflectionMaterial/index.vue.d.ts +74 -0
- package/dist/core/materials/meshReflectionMaterial/material.d.ts +51 -0
- package/dist/core/materials/meshWobbleMaterial/index.vue.d.ts +1 -1
- package/dist/core/misc/BakeShadows.d.ts +1 -0
- package/dist/core/misc/Stats.d.ts +1 -1
- package/dist/core/misc/StatsGl.d.ts +1 -1
- package/dist/core/misc/html/HTML.vue.d.ts +2 -2
- package/dist/core/misc/index.d.ts +3 -1
- package/dist/core/misc/useGLTFExporter.d.ts +12 -0
- package/dist/core/shapes/Box.vue.d.ts +1 -1
- package/dist/core/shapes/CatmullRomCurve3.vue.d.ts +1 -1
- package/dist/core/shapes/Circle.vue.d.ts +1 -1
- package/dist/core/shapes/Cone.vue.d.ts +1 -1
- package/dist/core/shapes/Dodecahedron.vue.d.ts +1 -1
- package/dist/core/shapes/Icosahedron.vue.d.ts +1 -1
- package/dist/core/shapes/Line2.vue.d.ts +1 -1
- package/dist/core/shapes/Octahedron.vue.d.ts +1 -1
- package/dist/core/shapes/Plane.vue.d.ts +1 -1
- package/dist/core/shapes/Ring.vue.d.ts +1 -1
- package/dist/core/shapes/RoundedBox.vue.d.ts +58 -0
- package/dist/core/shapes/Sphere.vue.d.ts +1 -1
- package/dist/core/shapes/Superformula.vue.d.ts +1 -1
- package/dist/core/shapes/Tetrahedron.vue.d.ts +1 -1
- package/dist/core/shapes/Torus.vue.d.ts +1 -1
- package/dist/core/shapes/TorusKnot.vue.d.ts +1 -1
- package/dist/core/shapes/Tube.vue.d.ts +1 -1
- package/dist/core/shapes/index.d.ts +2 -1
- package/dist/core/staging/Backdrop.vue.d.ts +1 -1
- package/dist/core/staging/Ocean.vue.d.ts +163 -0
- package/dist/core/staging/Precipitation.vue.d.ts +1 -1
- package/dist/core/staging/Sky.vue.d.ts +6 -1
- package/dist/core/staging/Smoke.vue.d.ts +1 -1
- package/dist/core/staging/Sparkles/ShaderData.d.ts +1 -1
- package/dist/core/staging/Sparkles/component.vue.d.ts +4 -4
- package/dist/core/staging/Stars.vue.d.ts +1 -1
- package/dist/core/staging/index.d.ts +2 -1
- package/dist/trescientos.js +7825 -5764
- package/dist/trescientos.umd.cjs +355 -115
- package/dist/utils/constants.d.ts +1 -0
- package/package.json +23 -24
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const version: number;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tresjs/cientos",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "4.0.0-next.0",
|
|
5
5
|
"packageManager": "pnpm@8.10.2",
|
|
6
6
|
"description": "Collection of useful helpers and fully functional, ready-made abstractions for Tres",
|
|
7
7
|
"author": "Alvaro Saburido <hola@alvarosaburido.dev> (https://github.com/alvarosabu/)",
|
|
@@ -57,41 +57,40 @@
|
|
|
57
57
|
"vue": ">=3.3"
|
|
58
58
|
},
|
|
59
59
|
"dependencies": {
|
|
60
|
-
"@
|
|
61
|
-
"
|
|
62
|
-
"camera-controls": "^2.7.2",
|
|
60
|
+
"@vueuse/core": "^10.7.2",
|
|
61
|
+
"camera-controls": "^2.7.4",
|
|
63
62
|
"stats-gl": "^2.0.1",
|
|
64
63
|
"stats.js": "^0.17.0",
|
|
65
64
|
"three-custom-shader-material": "^5.4.0",
|
|
66
|
-
"three-stdlib": "^2.
|
|
65
|
+
"three-stdlib": "^2.29.4"
|
|
67
66
|
},
|
|
68
67
|
"devDependencies": {
|
|
69
68
|
"@release-it/conventional-changelog": "^8.0.1",
|
|
70
|
-
"@tresjs/core": "
|
|
69
|
+
"@tresjs/core": "4.0.0-next.1",
|
|
71
70
|
"@tresjs/eslint-config-vue": "^0.2.1",
|
|
72
71
|
"@tweakpane/core": "^1.1.9",
|
|
73
|
-
"@types/node": "^20.
|
|
74
|
-
"@types/three": "^0.
|
|
75
|
-
"@typescript-eslint/eslint-plugin": "^6.
|
|
76
|
-
"@typescript-eslint/parser": "^6.
|
|
77
|
-
"@vitejs/plugin-vue": "^
|
|
78
|
-
"eslint": "^8.
|
|
79
|
-
"eslint-plugin-vue": "^9.
|
|
80
|
-
"gsap": "^3.12.
|
|
72
|
+
"@types/node": "^20.11.16",
|
|
73
|
+
"@types/three": "^0.161.2",
|
|
74
|
+
"@typescript-eslint/eslint-plugin": "^6.21.0",
|
|
75
|
+
"@typescript-eslint/parser": "^6.21.0",
|
|
76
|
+
"@vitejs/plugin-vue": "^5.0.3",
|
|
77
|
+
"eslint": "^8.56.0",
|
|
78
|
+
"eslint-plugin-vue": "^9.21.1",
|
|
79
|
+
"gsap": "^3.12.5",
|
|
81
80
|
"kolorist": "^1.8.0",
|
|
82
|
-
"pathe": "^1.1.
|
|
83
|
-
"release-it": "^17.0.
|
|
81
|
+
"pathe": "^1.1.2",
|
|
82
|
+
"release-it": "^17.0.3",
|
|
84
83
|
"rollup-plugin-analyzer": "^4.0.0",
|
|
85
|
-
"rollup-plugin-visualizer": "^5.
|
|
86
|
-
"three": "^0.
|
|
84
|
+
"rollup-plugin-visualizer": "^5.12.0",
|
|
85
|
+
"three": "^0.161.0",
|
|
87
86
|
"tweakpane": "^3.1.10",
|
|
88
|
-
"typescript": "^5.3.
|
|
89
|
-
"unocss": "^0.
|
|
90
|
-
"vite": "^5.0.
|
|
87
|
+
"typescript": "^5.3.3",
|
|
88
|
+
"unocss": "^0.58.5",
|
|
89
|
+
"vite": "^5.0.12",
|
|
91
90
|
"vite-plugin-banner": "^0.7.1",
|
|
92
|
-
"vite-plugin-dts": "3.
|
|
93
|
-
"vite-plugin-glsl": "^1.2.
|
|
91
|
+
"vite-plugin-dts": "3.7.2",
|
|
92
|
+
"vite-plugin-glsl": "^1.2.1",
|
|
94
93
|
"vite-svg-loader": "^5.1.0",
|
|
95
|
-
"vitepress": "1.0.0-rc.
|
|
94
|
+
"vitepress": "1.0.0-rc.42"
|
|
96
95
|
}
|
|
97
96
|
}
|