@tresjs/cientos 2.0.0-beta.4 → 2.0.0-beta.5
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/dist/core/Box.vue.d.ts +1 -1
- package/dist/core/Circle.vue.d.ts +1 -1
- package/dist/core/Cone.vue.d.ts +1 -1
- package/dist/core/Dodecahedron.vue.d.ts +1 -1
- package/dist/core/Icosahedron.vue.d.ts +1 -1
- package/dist/core/Levioso.vue.d.ts +52 -0
- package/dist/core/Octahedron.vue.d.ts +1 -1
- package/dist/core/Plane.vue.d.ts +1 -1
- package/dist/core/PointerLockControls.vue.d.ts +60 -0
- package/dist/core/Ring.vue.d.ts +1 -1
- package/dist/core/Smoke.vue.d.ts +163 -0
- package/dist/core/Sphere.vue.d.ts +1 -1
- package/dist/core/Stars.vue.d.ts +181 -0
- package/dist/core/Tetrahedron.vue.d.ts +1 -1
- package/dist/core/Text3D.vue.d.ts +3 -1
- package/dist/core/Torus.vue.d.ts +1 -1
- package/dist/core/TorusKnot.vue.d.ts +1 -1
- package/dist/core/Tube.vue.d.ts +1 -1
- package/dist/index.d.ts +4 -1
- package/dist/trescientos.js +4619 -4491
- package/dist/trescientos.umd.cjs +15 -15
- package/package.json +6 -5
package/dist/core/Tube.vue.d.ts
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -6,6 +6,7 @@ import { useTweakPane } from './core/useTweakPane';
|
|
|
6
6
|
import { useAnimations } from './core/useAnimations';
|
|
7
7
|
import { GLTFModel } from './core/useGLTF/component';
|
|
8
8
|
import { FBXModel } from './core/useFBX/component';
|
|
9
|
+
import Stars from './core/Stars.vue';
|
|
9
10
|
import Text3D from './core/Text3D.vue';
|
|
10
11
|
import Plane from './core/Plane.vue';
|
|
11
12
|
import Box from './core/Box.vue';
|
|
@@ -21,9 +22,11 @@ import Icosahedron from './core/Icosahedron.vue';
|
|
|
21
22
|
import Octahedron from './core/Octahedron.vue';
|
|
22
23
|
import Dodecahedron from './core/Dodecahedron.vue';
|
|
23
24
|
import { Environment } from './core/useEnvironment/component';
|
|
25
|
+
import Smoke from './core/Smoke.vue';
|
|
26
|
+
import Levioso from './core/Levioso.vue';
|
|
24
27
|
import MeshWobbleMaterial from './core/meshWobbleMaterial/index.vue';
|
|
25
28
|
export * from './core/useGLTF';
|
|
26
29
|
export * from './core/useFBX';
|
|
27
30
|
export * from './core/useEnvironment';
|
|
28
31
|
export * from './core/usePamCameraMouse';
|
|
29
|
-
export { OrbitControls, PointerLockControls, TransformControls, useTweakPane, GLTFModel, FBXModel, Text3D, Plane, Box, Sphere, Torus, TorusKnot, Circle, Cone, Tube, Ring, Tetrahedron, Icosahedron, Octahedron, Dodecahedron, useAnimations, Environment, PamCameraMouse, MeshWobbleMaterial, };
|
|
32
|
+
export { OrbitControls, PointerLockControls, TransformControls, useTweakPane, GLTFModel, FBXModel, Stars, Text3D, Smoke, Plane, Box, Sphere, Torus, TorusKnot, Circle, Cone, Tube, Ring, Tetrahedron, Icosahedron, Octahedron, Dodecahedron, useAnimations, Environment, PamCameraMouse, Levioso, MeshWobbleMaterial, };
|