@tresjs/cientos 2.0.0-rc.0 → 2.0.0-rc.2
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 +2 -2
- package/dist/core/useEnvironment/index.d.ts +2 -2
- package/dist/core/useFBX/component.vue.d.ts +25 -0
- package/dist/core/useGLTF/component.vue.d.ts +70 -0
- package/dist/index.d.ts +2 -2
- package/dist/trescientos.js +2599 -2577
- package/dist/trescientos.umd.cjs +7 -7
- package/package.json +2 -2
- package/dist/core/useFBX/component.d.ts +0 -11
- package/dist/core/useGLTF/component.d.ts +0 -33
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tresjs/cientos",
|
|
3
3
|
"description": "Collection of useful helpers and fully functional, ready-made abstractions for Tres",
|
|
4
|
-
"version": "2.0.0-rc.
|
|
4
|
+
"version": "2.0.0-rc.2",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"packageManager": "pnpm@8.3.1",
|
|
7
7
|
"author": "Alvaro Saburido <hola@alvarosaburido.dev> (https://github.com/alvarosabu/)",
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"@alvarosabu/prettier-config": "^1.3.0",
|
|
51
51
|
"@release-it/conventional-changelog": "^5.1.1",
|
|
52
52
|
"@tweakpane/plugin-essentials": "^0.1.8",
|
|
53
|
-
"@types/three": "^0.
|
|
53
|
+
"@types/three": "^0.152.0",
|
|
54
54
|
"@typescript-eslint/eslint-plugin": "^5.59.2",
|
|
55
55
|
"@typescript-eslint/parser": "^5.59.2",
|
|
56
56
|
"@vitejs/plugin-vue": "^4.2.1",
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
export interface FBXModelProps {
|
|
2
|
-
/**
|
|
3
|
-
* Path to the FBX file.
|
|
4
|
-
*
|
|
5
|
-
* @type {string}
|
|
6
|
-
* @memberof FBXModelProps
|
|
7
|
-
* @required
|
|
8
|
-
*/
|
|
9
|
-
path: string;
|
|
10
|
-
}
|
|
11
|
-
export declare const FBXModel: import("vue").DefineComponent<FBXModelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<FBXModelProps>, {}>;
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
export interface GLTFModelProps {
|
|
2
|
-
/**
|
|
3
|
-
*
|
|
4
|
-
* The path to the GLTF file.
|
|
5
|
-
*
|
|
6
|
-
* @type {string}
|
|
7
|
-
* @required
|
|
8
|
-
* @memberof GLTFModelProps
|
|
9
|
-
*
|
|
10
|
-
**/
|
|
11
|
-
path: string;
|
|
12
|
-
/**
|
|
13
|
-
*
|
|
14
|
-
* Whether to use Draco compression.
|
|
15
|
-
*
|
|
16
|
-
* @type {boolean}
|
|
17
|
-
* @default false
|
|
18
|
-
* @memberof GLTFModelProps
|
|
19
|
-
*
|
|
20
|
-
**/
|
|
21
|
-
draco?: boolean;
|
|
22
|
-
/**
|
|
23
|
-
*
|
|
24
|
-
* The path to the Draco decoder.
|
|
25
|
-
*
|
|
26
|
-
* @type {string}
|
|
27
|
-
* @default 'https://www.gstatic.com/draco/versioned/decoders/1.4.1/'
|
|
28
|
-
* @memberof GLTFModelProps
|
|
29
|
-
*
|
|
30
|
-
**/
|
|
31
|
-
decoderPath?: string;
|
|
32
|
-
}
|
|
33
|
-
export declare const GLTFModel: import("vue").DefineComponent<GLTFModelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<GLTFModelProps>, {}>;
|