@tresjs/cientos 1.8.0 → 2.0.0-alpha.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.
@@ -1,35 +1,33 @@
1
- export declare const GLTFModel: import("vue").DefineComponent<{
1
+ export interface GLTFModelProps {
2
2
  /**
3
+ *
3
4
  * The path to the GLTF file.
4
5
  *
5
- */
6
- path: StringConstructor;
7
- /**
8
- * Whether to use Draco compression.
6
+ * @type {string}
7
+ * @required
8
+ * @memberof GLTFModelProps
9
9
  *
10
- */
11
- draco: BooleanConstructor;
10
+ **/
11
+ path: string;
12
12
  /**
13
- * The path to the Draco decoder.
14
13
  *
15
- */
16
- decoderPath: StringConstructor;
17
- }, () => void, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
18
- /**
19
- * The path to the GLTF file.
20
- *
21
- */
22
- path: StringConstructor;
23
- /**
24
14
  * Whether to use Draco compression.
25
15
  *
26
- */
27
- draco: BooleanConstructor;
16
+ * @type {boolean}
17
+ * @default false
18
+ * @memberof GLTFModelProps
19
+ *
20
+ **/
21
+ draco?: boolean;
28
22
  /**
23
+ *
29
24
  * The path to the Draco decoder.
30
25
  *
31
- */
32
- decoderPath: StringConstructor;
33
- }>>, {
34
- draco: boolean;
35
- }>;
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>, {}>;
@@ -1,26 +1,19 @@
1
- export declare const PamCameraMouse: import("vue").DefineComponent<{
2
- disabled: {
3
- type: BooleanConstructor;
4
- required: false;
5
- default: boolean;
6
- };
7
- factor: {
8
- type: NumberConstructor;
9
- required: false;
10
- default: number;
11
- };
12
- }, () => void, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
13
- disabled: {
14
- type: BooleanConstructor;
15
- required: false;
16
- default: boolean;
17
- };
18
- factor: {
19
- type: NumberConstructor;
20
- required: false;
21
- default: number;
22
- };
23
- }>>, {
24
- disabled: boolean;
25
- factor: number;
26
- }>;
1
+ export interface PamCameraMouseProps {
2
+ /**
3
+ * Whether to disable the mouse controls.
4
+ * @type {boolean}
5
+ * @default false
6
+ * @memberof PamCameraMouseProps
7
+ *
8
+ */
9
+ disabled?: boolean;
10
+ /**
11
+ * The factor to multiply the mouse movement by.
12
+ * @type {number}
13
+ * @default 5
14
+ * @memberof PamCameraMouseProps
15
+ *
16
+ **/
17
+ factor?: number;
18
+ }
19
+ export declare const PamCameraMouse: import("vue").DefineComponent<PamCameraMouseProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<PamCameraMouseProps>, {}>;