@tresjs/cientos 4.3.0 → 5.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.
- package/dist/core/abstractions/AnimatedSprite/component.vue.d.ts +14 -4
- package/dist/core/abstractions/Billboard.vue.d.ts +24 -6
- package/dist/core/abstractions/CubeCamera/component.vue.d.ts +14 -4
- package/dist/core/abstractions/CubeCamera/useCubeCamera.d.ts +3 -2
- package/dist/core/abstractions/Edges.vue.d.ts +15 -5
- package/dist/core/abstractions/GradientTexture.vue.d.ts +14 -1
- package/dist/core/abstractions/Image/ImageMaterial.vue.d.ts +3 -1
- package/dist/core/abstractions/Image/component.vue.d.ts +3 -9
- package/dist/core/abstractions/Lensflare/LensflareImpl.d.ts +23 -0
- package/dist/core/abstractions/Lensflare/component.vue.d.ts +12 -3
- package/dist/core/abstractions/Levioso.vue.d.ts +22 -16
- package/dist/core/abstractions/MarchingCubes/MarchingCube.vue.d.ts +22 -0
- package/dist/core/abstractions/MarchingCubes/MarchingCubes.vue.d.ts +35 -0
- package/dist/core/abstractions/MarchingCubes/MarchingPlane.vue.d.ts +20 -0
- package/dist/core/abstractions/MarchingCubes/const.d.ts +2 -0
- package/dist/core/abstractions/Mask/component.vue.d.ts +15 -5
- package/dist/core/abstractions/MouseParallax.vue.d.ts +11 -1
- package/dist/core/abstractions/Outline/component.vue.d.ts +12 -2
- package/dist/core/abstractions/PositionalAudio.vue.d.ts +11 -2
- package/dist/core/abstractions/Reflector.vue.d.ts +5 -2
- package/dist/core/abstractions/ScreenSizer.vue.d.ts +24 -6
- package/dist/core/abstractions/ScreenSpace.vue.d.ts +14 -4
- package/dist/core/abstractions/Text3D.vue.d.ts +14 -4
- package/dist/core/abstractions/index.d.ts +4 -1
- package/dist/core/abstractions/useAnimations.d.ts +4 -4
- package/dist/core/abstractions/useSurfaceSampler/component.vue.d.ts +14 -4
- package/dist/core/abstractions/useSurfaceSampler/index.d.ts +3 -2
- package/dist/core/controls/CameraControls.vue.d.ts +4 -2
- package/dist/core/controls/Helper/component.vue.d.ts +16 -0
- package/dist/core/controls/Helper/useHelper.d.ts +10 -0
- package/dist/core/controls/MapControls.vue.d.ts +3 -1
- package/dist/core/controls/OrbitControls.vue.d.ts +3 -1
- package/dist/core/controls/PointerLockControls.vue.d.ts +3 -1
- package/dist/core/controls/ScrollControls.vue.d.ts +23 -18
- package/dist/core/controls/TransformControls.vue.d.ts +3 -1
- package/dist/core/controls/index.d.ts +2 -1
- package/dist/core/loaders/index.d.ts +6 -2
- package/dist/core/loaders/useFBX/component.vue.d.ts +4 -11
- package/dist/core/loaders/useFBX/index.d.ts +28 -5
- package/dist/core/loaders/useGLTF/component.vue.d.ts +3 -15
- package/dist/core/loaders/useGLTF/index.d.ts +31 -27
- package/dist/core/loaders/{SVG → useSVG}/component.vue.d.ts +2 -1
- package/dist/core/loaders/useSVG/index.d.ts +65 -0
- package/dist/core/loaders/useTexture/component.vue.d.ts +5134 -0
- package/dist/core/loaders/useTexture/index.d.ts +3 -0
- package/dist/core/loaders/useTextures/index.d.ts +13 -0
- package/dist/core/materials/customShaderMaterial/index.vue.d.ts +3 -1
- package/dist/core/materials/holographicMaterial/index.vue.d.ts +7 -16
- package/dist/core/materials/index.d.ts +2 -1
- package/dist/core/materials/meshDiscardMaterial/index.vue.d.ts +3 -1
- package/dist/core/materials/meshGlassMaterial/index.vue.d.ts +3 -1
- package/dist/core/materials/meshGlassMaterial/material.d.ts +11 -2
- package/dist/core/materials/meshReflectionMaterial/index.vue.d.ts +7 -5
- package/dist/core/materials/meshWobbleMaterial/index.vue.d.ts +7 -7
- package/dist/core/materials/pointMaterial/component.vue.d.ts +8 -0
- package/dist/core/materials/pointMaterial/material.d.ts +4 -0
- package/dist/core/misc/LOD.vue.d.ts +52 -0
- package/dist/core/misc/html/HTML.vue.d.ts +25 -7
- package/dist/core/misc/index.d.ts +3 -1
- package/dist/core/misc/useIntersect.d.ts +9 -0
- package/dist/core/shapes/Box.vue.d.ts +14 -4
- package/dist/core/shapes/Circle.vue.d.ts +15 -5
- package/dist/core/shapes/Cone.vue.d.ts +14 -4
- package/dist/core/shapes/CubicBezierLine.vue.d.ts +49 -0
- package/dist/core/shapes/Cylinder.vue.d.ts +14 -4
- package/dist/core/shapes/Dodecahedron.vue.d.ts +14 -4
- package/dist/core/shapes/Icosahedron.vue.d.ts +14 -4
- package/dist/core/shapes/Line2.vue.d.ts +2 -2
- package/dist/core/shapes/Octahedron.vue.d.ts +14 -4
- package/dist/core/shapes/Plane.vue.d.ts +15 -5
- package/dist/core/shapes/QuadraticBezierLine.vue.d.ts +48 -0
- package/dist/core/shapes/Ring.vue.d.ts +14 -4
- package/dist/core/shapes/RoundedBox.vue.d.ts +14 -4
- package/dist/core/shapes/ScreenQuad.vue.d.ts +38 -0
- package/dist/core/shapes/Sphere.vue.d.ts +14 -4
- package/dist/core/shapes/Superformula.vue.d.ts +14 -4
- package/dist/core/shapes/Tetrahedron.vue.d.ts +14 -4
- package/dist/core/shapes/Torus.vue.d.ts +14 -4
- package/dist/core/shapes/TorusKnot.vue.d.ts +14 -4
- package/dist/core/shapes/Tube.vue.d.ts +14 -4
- package/dist/core/shapes/index.d.ts +4 -1
- package/dist/core/staging/AccumulativeShadows/ProgressiveLightMap.d.ts +35 -0
- package/dist/core/staging/AccumulativeShadows/SoftShadowMaterial.d.ts +10 -0
- package/dist/core/staging/AccumulativeShadows/component.vue.d.ts +115 -0
- package/dist/core/staging/Align.vue.d.ts +46 -16
- package/dist/core/staging/Backdrop.vue.d.ts +23 -5
- package/dist/core/staging/Bounds/Bounds.d.ts +73 -0
- package/dist/core/staging/Bounds/component.vue.d.ts +60 -0
- package/dist/core/staging/CircleShadow.vue.d.ts +27 -0
- package/dist/core/staging/ContactShadows.vue.d.ts +2 -2
- package/dist/core/staging/Fit.vue.d.ts +35 -9
- package/dist/core/staging/Grid.vue.d.ts +11 -2
- package/dist/core/staging/Ocean.vue.d.ts +5 -2
- package/dist/core/staging/Precipitation.vue.d.ts +18 -1
- package/dist/core/staging/RandomizedLights/RandomizedLights.d.ts +29 -0
- package/dist/core/staging/RandomizedLights/component.vue.d.ts +43 -0
- package/dist/core/staging/Sky.vue.d.ts +1 -1
- package/dist/core/staging/Smoke.vue.d.ts +18 -1
- package/dist/core/staging/Sparkles/component.vue.d.ts +1 -1
- package/dist/core/staging/Stage.vue.d.ts +677 -0
- package/dist/core/staging/Stars.vue.d.ts +10 -1
- package/dist/core/staging/index.d.ts +6 -1
- package/dist/core/staging/useEnvironment/component.vue.d.ts +7 -4
- package/dist/core/staging/useEnvironment/lightformer/index.vue.d.ts +24 -13
- package/dist/trescientos.js +52469 -11173
- package/package.json +29 -27
- package/dist/composables/useLogger.d.ts +0 -8
- package/dist/trescientos.umd.cjs +0 -1721
|
@@ -0,0 +1,677 @@
|
|
|
1
|
+
import { Group } from 'three';
|
|
2
|
+
import { AccumulativeShadowsProps } from './AccumulativeShadows/component.vue';
|
|
3
|
+
import { ContactShadowsProps } from './ContactShadows.vue';
|
|
4
|
+
import { RandomizedLightsProps } from './RandomizedLights/component.vue';
|
|
5
|
+
import { AlignCallbackOptions, AlignProps } from './Align.vue';
|
|
6
|
+
import { EnvironmentOptions, EnvironmentPresetsType } from './useEnvironment/const';
|
|
7
|
+
interface StageProps {
|
|
8
|
+
/** Lighting setup, default: "rembrandt" */
|
|
9
|
+
lighting?: null | undefined | false | 'rembrandt' | 'portrait' | 'upfront' | 'soft' | {
|
|
10
|
+
main: [x: number, y: number, z: number];
|
|
11
|
+
fill: [x: number, y: number, z: number];
|
|
12
|
+
};
|
|
13
|
+
/** Controls the ground shadows, default: "contact" */
|
|
14
|
+
shadows?: boolean | 'contact' | 'accumulative' | StageShadows;
|
|
15
|
+
/** Optionally wraps and thereby centers the models using <Bounds>, can also be a camera offset, default: true */
|
|
16
|
+
adjustCamera?: boolean | number;
|
|
17
|
+
/** The default environment, default: { preset: "city" } */
|
|
18
|
+
environment?: EnvironmentPresetsType | Partial<EnvironmentOptions> | null;
|
|
19
|
+
/** Lighting intensity, `0` removes lights, default: 0.5 */
|
|
20
|
+
intensity?: number;
|
|
21
|
+
/** To adjust alignment, default: undefined */
|
|
22
|
+
align?: Partial<AlignProps>;
|
|
23
|
+
}
|
|
24
|
+
type StageShadows = Partial<AccumulativeShadowsProps> & Partial<RandomizedLightsProps> & Partial<ContactShadowsProps> & {
|
|
25
|
+
type: 'contact' | 'accumulative';
|
|
26
|
+
/** Shadow plane offset, default: 0 */
|
|
27
|
+
offset?: number;
|
|
28
|
+
/** Shadow bias, default: -0.0001 */
|
|
29
|
+
bias?: number;
|
|
30
|
+
/** Shadow normal bias, default: 0 */
|
|
31
|
+
normalBias?: number;
|
|
32
|
+
/** Shadow map size, default: 1024 */
|
|
33
|
+
size?: number;
|
|
34
|
+
};
|
|
35
|
+
declare function __VLS_template(): {
|
|
36
|
+
attrs: Partial<{}>;
|
|
37
|
+
slots: {
|
|
38
|
+
default?(_: {}): any;
|
|
39
|
+
};
|
|
40
|
+
refs: {
|
|
41
|
+
stageRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('@tresjs/core').Mutable<import('@tresjs/core').Overwrite<Partial<import('@tresjs/core').Overwrite<Group<import('three').Object3DEventMap>, import('@tresjs/core').WithMathProps<Group<import('three').Object3DEventMap>> & import('@tresjs/core').VueProps & Partial<import('@tresjs/core/dist/src/utils/pointerEvents.js').PointerEventHandlers>>>, Omit<import('@tresjs/core').InstanceProps<Group<import('three').Object3DEventMap>, typeof Group>, "object">>>>, {}, {}, import('vue').ComputedOptions, import('vue').MethodOptions, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
42
|
+
P: {};
|
|
43
|
+
B: {};
|
|
44
|
+
D: {};
|
|
45
|
+
C: {};
|
|
46
|
+
M: {};
|
|
47
|
+
Defaults: {};
|
|
48
|
+
}, Readonly<import('@tresjs/core').Mutable<import('@tresjs/core').Overwrite<Partial<import('@tresjs/core').Overwrite<Group<import('three').Object3DEventMap>, import('@tresjs/core').WithMathProps<Group<import('three').Object3DEventMap>> & import('@tresjs/core').VueProps & Partial<import('@tresjs/core/dist/src/utils/pointerEvents.js').PointerEventHandlers>>>, Omit<import('@tresjs/core').InstanceProps<Group<import('three').Object3DEventMap>, typeof Group>, "object">>>>, {}, {}, import('vue').ComputedOptions, import('vue').MethodOptions, {}> | null;
|
|
49
|
+
boundsRef: ({
|
|
50
|
+
$: import('vue').ComponentInternalInstance;
|
|
51
|
+
$data: {};
|
|
52
|
+
$props: {
|
|
53
|
+
readonly duration?: number | undefined;
|
|
54
|
+
readonly offset?: number | undefined;
|
|
55
|
+
readonly useResize?: boolean | undefined;
|
|
56
|
+
readonly useMounted?: boolean | undefined;
|
|
57
|
+
readonly clip?: boolean | undefined;
|
|
58
|
+
readonly easing?: ((t: number) => number) | undefined;
|
|
59
|
+
readonly onEnd?: ((sizeProps: import('./Bounds/Bounds').OnLookAtCallbackArg) => any) | undefined;
|
|
60
|
+
readonly onStart?: ((sizeProps: import('./Bounds/Bounds').OnLookAtCallbackArg) => any) | undefined;
|
|
61
|
+
readonly onCancel?: ((sizeProps: import('./Bounds/Bounds').OnLookAtCallbackArg) => any) | undefined;
|
|
62
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
63
|
+
$attrs: {
|
|
64
|
+
[x: string]: unknown;
|
|
65
|
+
};
|
|
66
|
+
$refs: {
|
|
67
|
+
[x: string]: unknown;
|
|
68
|
+
};
|
|
69
|
+
$slots: Readonly<{
|
|
70
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
71
|
+
}>;
|
|
72
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
73
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
74
|
+
$host: Element | null;
|
|
75
|
+
$emit: ((event: "end", sizeProps: import('./Bounds/Bounds').OnLookAtCallbackArg) => void) & ((event: "start", sizeProps: import('./Bounds/Bounds').OnLookAtCallbackArg) => void) & ((event: "cancel", sizeProps: import('./Bounds/Bounds').OnLookAtCallbackArg) => void);
|
|
76
|
+
$el: any;
|
|
77
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('./Bounds/component.vue').BoundsProps> & Readonly<{
|
|
78
|
+
onEnd?: ((sizeProps: import('./Bounds/Bounds').OnLookAtCallbackArg) => any) | undefined;
|
|
79
|
+
onStart?: ((sizeProps: import('./Bounds/Bounds').OnLookAtCallbackArg) => any) | undefined;
|
|
80
|
+
onCancel?: ((sizeProps: import('./Bounds/Bounds').OnLookAtCallbackArg) => any) | undefined;
|
|
81
|
+
}>, {
|
|
82
|
+
instance: import('./Bounds/Bounds').Bounds;
|
|
83
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
84
|
+
end: (sizeProps: import('./Bounds/Bounds').OnLookAtCallbackArg) => any;
|
|
85
|
+
start: (sizeProps: import('./Bounds/Bounds').OnLookAtCallbackArg) => any;
|
|
86
|
+
cancel: (sizeProps: import('./Bounds/Bounds').OnLookAtCallbackArg) => any;
|
|
87
|
+
}, string, {
|
|
88
|
+
duration: number;
|
|
89
|
+
offset: number;
|
|
90
|
+
useResize: boolean;
|
|
91
|
+
useMounted: boolean;
|
|
92
|
+
clip: boolean;
|
|
93
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
94
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
95
|
+
created?: (() => void) | (() => void)[];
|
|
96
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
97
|
+
mounted?: (() => void) | (() => void)[];
|
|
98
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
99
|
+
updated?: (() => void) | (() => void)[];
|
|
100
|
+
activated?: (() => void) | (() => void)[];
|
|
101
|
+
deactivated?: (() => void) | (() => void)[];
|
|
102
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
103
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
104
|
+
destroyed?: (() => void) | (() => void)[];
|
|
105
|
+
unmounted?: (() => void) | (() => void)[];
|
|
106
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
107
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
108
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
109
|
+
};
|
|
110
|
+
$forceUpdate: () => void;
|
|
111
|
+
$nextTick: typeof import('vue').nextTick;
|
|
112
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
113
|
+
} & Readonly<{
|
|
114
|
+
duration: number;
|
|
115
|
+
offset: number;
|
|
116
|
+
useResize: boolean;
|
|
117
|
+
useMounted: boolean;
|
|
118
|
+
clip: boolean;
|
|
119
|
+
}> & Omit<Readonly<import('./Bounds/component.vue').BoundsProps> & Readonly<{
|
|
120
|
+
onEnd?: ((sizeProps: import('./Bounds/Bounds').OnLookAtCallbackArg) => any) | undefined;
|
|
121
|
+
onStart?: ((sizeProps: import('./Bounds/Bounds').OnLookAtCallbackArg) => any) | undefined;
|
|
122
|
+
onCancel?: ((sizeProps: import('./Bounds/Bounds').OnLookAtCallbackArg) => any) | undefined;
|
|
123
|
+
}>, "instance" | ("duration" | "offset" | "useResize" | "useMounted" | "clip")> & import('vue').ShallowUnwrapRef<{
|
|
124
|
+
instance: import('./Bounds/Bounds').Bounds;
|
|
125
|
+
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
126
|
+
$slots: {
|
|
127
|
+
default?(_: {}): any;
|
|
128
|
+
};
|
|
129
|
+
}) | null;
|
|
130
|
+
alignRef: ({
|
|
131
|
+
$: import('vue').ComponentInternalInstance;
|
|
132
|
+
$data: {};
|
|
133
|
+
$props: {
|
|
134
|
+
readonly top?: boolean | undefined;
|
|
135
|
+
readonly right?: boolean | undefined;
|
|
136
|
+
readonly bottom?: boolean | undefined;
|
|
137
|
+
readonly left?: boolean | undefined;
|
|
138
|
+
readonly front?: boolean | undefined;
|
|
139
|
+
readonly back?: boolean | undefined;
|
|
140
|
+
readonly disable?: boolean | undefined;
|
|
141
|
+
readonly disableX?: boolean | undefined;
|
|
142
|
+
readonly disableY?: boolean | undefined;
|
|
143
|
+
readonly disableZ?: boolean | undefined;
|
|
144
|
+
readonly precise?: boolean | undefined;
|
|
145
|
+
readonly cacheKey?: import('vue').MaybeRefOrGetter<any>;
|
|
146
|
+
readonly onUpdate?: ((props: AlignCallbackOptions) => any) | undefined;
|
|
147
|
+
readonly onChange?: ((props: AlignCallbackOptions) => any) | undefined;
|
|
148
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
149
|
+
$attrs: {
|
|
150
|
+
[x: string]: unknown;
|
|
151
|
+
};
|
|
152
|
+
$refs: {
|
|
153
|
+
[x: string]: unknown;
|
|
154
|
+
} & {
|
|
155
|
+
ref: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('@tresjs/core').Mutable<import('@tresjs/core').Overwrite<Partial<import('@tresjs/core').Overwrite<Group<import('three').Object3DEventMap>, import('@tresjs/core').WithMathProps<Group<import('three').Object3DEventMap>> & import('@tresjs/core').VueProps & Partial<import('@tresjs/core/dist/src/utils/pointerEvents.js').PointerEventHandlers>>>, Omit<import('@tresjs/core').InstanceProps<Group<import('three').Object3DEventMap>, typeof Group>, "object">>>>, {}, {}, import('vue').ComputedOptions, import('vue').MethodOptions, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
156
|
+
P: {};
|
|
157
|
+
B: {};
|
|
158
|
+
D: {};
|
|
159
|
+
C: {};
|
|
160
|
+
M: {};
|
|
161
|
+
Defaults: {};
|
|
162
|
+
}, Readonly<import('@tresjs/core').Mutable<import('@tresjs/core').Overwrite<Partial<import('@tresjs/core').Overwrite<Group<import('three').Object3DEventMap>, import('@tresjs/core').WithMathProps<Group<import('three').Object3DEventMap>> & import('@tresjs/core').VueProps & Partial<import('@tresjs/core/dist/src/utils/pointerEvents.js').PointerEventHandlers>>>, Omit<import('@tresjs/core').InstanceProps<Group<import('three').Object3DEventMap>, typeof Group>, "object">>>>, {}, {}, import('vue').ComputedOptions, import('vue').MethodOptions, {}> | null;
|
|
163
|
+
outer: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('@tresjs/core').Mutable<import('@tresjs/core').Overwrite<Partial<import('@tresjs/core').Overwrite<Group<import('three').Object3DEventMap>, import('@tresjs/core').WithMathProps<Group<import('three').Object3DEventMap>> & import('@tresjs/core').VueProps & Partial<import('@tresjs/core/dist/src/utils/pointerEvents.js').PointerEventHandlers>>>, Omit<import('@tresjs/core').InstanceProps<Group<import('three').Object3DEventMap>, typeof Group>, "object">>>>, {}, {}, import('vue').ComputedOptions, import('vue').MethodOptions, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
164
|
+
P: {};
|
|
165
|
+
B: {};
|
|
166
|
+
D: {};
|
|
167
|
+
C: {};
|
|
168
|
+
M: {};
|
|
169
|
+
Defaults: {};
|
|
170
|
+
}, Readonly<import('@tresjs/core').Mutable<import('@tresjs/core').Overwrite<Partial<import('@tresjs/core').Overwrite<Group<import('three').Object3DEventMap>, import('@tresjs/core').WithMathProps<Group<import('three').Object3DEventMap>> & import('@tresjs/core').VueProps & Partial<import('@tresjs/core/dist/src/utils/pointerEvents.js').PointerEventHandlers>>>, Omit<import('@tresjs/core').InstanceProps<Group<import('three').Object3DEventMap>, typeof Group>, "object">>>>, {}, {}, import('vue').ComputedOptions, import('vue').MethodOptions, {}> | null;
|
|
171
|
+
inner: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('@tresjs/core').Mutable<import('@tresjs/core').Overwrite<Partial<import('@tresjs/core').Overwrite<Group<import('three').Object3DEventMap>, import('@tresjs/core').WithMathProps<Group<import('three').Object3DEventMap>> & import('@tresjs/core').VueProps & Partial<import('@tresjs/core/dist/src/utils/pointerEvents.js').PointerEventHandlers>>>, Omit<import('@tresjs/core').InstanceProps<Group<import('three').Object3DEventMap>, typeof Group>, "object">>>>, {}, {}, import('vue').ComputedOptions, import('vue').MethodOptions, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
172
|
+
P: {};
|
|
173
|
+
B: {};
|
|
174
|
+
D: {};
|
|
175
|
+
C: {};
|
|
176
|
+
M: {};
|
|
177
|
+
Defaults: {};
|
|
178
|
+
}, Readonly<import('@tresjs/core').Mutable<import('@tresjs/core').Overwrite<Partial<import('@tresjs/core').Overwrite<Group<import('three').Object3DEventMap>, import('@tresjs/core').WithMathProps<Group<import('three').Object3DEventMap>> & import('@tresjs/core').VueProps & Partial<import('@tresjs/core/dist/src/utils/pointerEvents.js').PointerEventHandlers>>>, Omit<import('@tresjs/core').InstanceProps<Group<import('three').Object3DEventMap>, typeof Group>, "object">>>>, {}, {}, import('vue').ComputedOptions, import('vue').MethodOptions, {}> | null;
|
|
179
|
+
};
|
|
180
|
+
$slots: Readonly<{
|
|
181
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
182
|
+
}>;
|
|
183
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
184
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
185
|
+
$host: Element | null;
|
|
186
|
+
$emit: ((event: "update", props: AlignCallbackOptions) => void) & ((event: "change", props: AlignCallbackOptions) => void);
|
|
187
|
+
$el: any;
|
|
188
|
+
$options: import('vue').ComponentOptionsBase<Readonly<AlignProps> & Readonly<{
|
|
189
|
+
onUpdate?: ((props: AlignCallbackOptions) => any) | undefined;
|
|
190
|
+
onChange?: ((props: AlignCallbackOptions) => any) | undefined;
|
|
191
|
+
}>, {
|
|
192
|
+
instance: import('vue').ShallowRef<Group<import('three').Object3DEventMap> | undefined, Group<import('three').Object3DEventMap> | undefined>;
|
|
193
|
+
update: () => void;
|
|
194
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
195
|
+
update: (props: AlignCallbackOptions) => void;
|
|
196
|
+
change: (props: AlignCallbackOptions) => void;
|
|
197
|
+
}, string, {
|
|
198
|
+
precise: boolean;
|
|
199
|
+
cacheKey: import('vue').MaybeRefOrGetter<any>;
|
|
200
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
201
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
202
|
+
created?: (() => void) | (() => void)[];
|
|
203
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
204
|
+
mounted?: (() => void) | (() => void)[];
|
|
205
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
206
|
+
updated?: (() => void) | (() => void)[];
|
|
207
|
+
activated?: (() => void) | (() => void)[];
|
|
208
|
+
deactivated?: (() => void) | (() => void)[];
|
|
209
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
210
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
211
|
+
destroyed?: (() => void) | (() => void)[];
|
|
212
|
+
unmounted?: (() => void) | (() => void)[];
|
|
213
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
214
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
215
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
216
|
+
};
|
|
217
|
+
$forceUpdate: () => void;
|
|
218
|
+
$nextTick: typeof import('vue').nextTick;
|
|
219
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
220
|
+
} & Readonly<{
|
|
221
|
+
precise: boolean;
|
|
222
|
+
cacheKey: import('vue').MaybeRefOrGetter<any>;
|
|
223
|
+
}> & Omit<Readonly<AlignProps> & Readonly<{
|
|
224
|
+
onUpdate?: ((props: AlignCallbackOptions) => any) | undefined;
|
|
225
|
+
onChange?: ((props: AlignCallbackOptions) => any) | undefined;
|
|
226
|
+
}>, "instance" | "update" | ("precise" | "cacheKey")> & import('vue').ShallowUnwrapRef<{
|
|
227
|
+
instance: import('vue').ShallowRef<Group<import('three').Object3DEventMap> | undefined, Group<import('three').Object3DEventMap> | undefined>;
|
|
228
|
+
update: () => void;
|
|
229
|
+
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
230
|
+
$slots: {
|
|
231
|
+
default?(_: {}): any;
|
|
232
|
+
};
|
|
233
|
+
}) | null;
|
|
234
|
+
accumulativeShadowsRef: ({
|
|
235
|
+
$: import('vue').ComponentInternalInstance;
|
|
236
|
+
$data: {};
|
|
237
|
+
$props: {
|
|
238
|
+
readonly once?: boolean | undefined;
|
|
239
|
+
readonly accumulate?: boolean | undefined;
|
|
240
|
+
readonly frames?: number | undefined;
|
|
241
|
+
readonly blend?: number | undefined;
|
|
242
|
+
readonly limit?: number | undefined;
|
|
243
|
+
readonly scale?: number | undefined;
|
|
244
|
+
readonly opacity?: number | undefined;
|
|
245
|
+
readonly alphaTest?: number | undefined;
|
|
246
|
+
readonly color?: import('three').ColorRepresentation | undefined;
|
|
247
|
+
readonly colorBlend?: number | undefined;
|
|
248
|
+
readonly resolution?: number | undefined;
|
|
249
|
+
readonly toneMapped?: boolean | undefined;
|
|
250
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
251
|
+
$attrs: {
|
|
252
|
+
[x: string]: unknown;
|
|
253
|
+
};
|
|
254
|
+
$refs: {
|
|
255
|
+
[x: string]: unknown;
|
|
256
|
+
} & {
|
|
257
|
+
gOuter: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('@tresjs/core').Mutable<import('@tresjs/core').Overwrite<Partial<import('@tresjs/core').Overwrite<Group<import('three').Object3DEventMap>, import('@tresjs/core').WithMathProps<Group<import('three').Object3DEventMap>> & import('@tresjs/core').VueProps & Partial<import('@tresjs/core/dist/src/utils/pointerEvents.js').PointerEventHandlers>>>, Omit<import('@tresjs/core').InstanceProps<Group<import('three').Object3DEventMap>, typeof Group>, "object">>>>, {}, {}, import('vue').ComputedOptions, import('vue').MethodOptions, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
258
|
+
P: {};
|
|
259
|
+
B: {};
|
|
260
|
+
D: {};
|
|
261
|
+
C: {};
|
|
262
|
+
M: {};
|
|
263
|
+
Defaults: {};
|
|
264
|
+
}, Readonly<import('@tresjs/core').Mutable<import('@tresjs/core').Overwrite<Partial<import('@tresjs/core').Overwrite<Group<import('three').Object3DEventMap>, import('@tresjs/core').WithMathProps<Group<import('three').Object3DEventMap>> & import('@tresjs/core').VueProps & Partial<import('@tresjs/core/dist/src/utils/pointerEvents.js').PointerEventHandlers>>>, Omit<import('@tresjs/core').InstanceProps<Group<import('three').Object3DEventMap>, typeof Group>, "object">>>>, {}, {}, import('vue').ComputedOptions, import('vue').MethodOptions, {}> | null;
|
|
265
|
+
gLights: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('@tresjs/core').Mutable<import('@tresjs/core').Overwrite<Partial<import('@tresjs/core').Overwrite<Group<import('three').Object3DEventMap>, import('@tresjs/core').WithMathProps<Group<import('three').Object3DEventMap>> & import('@tresjs/core').VueProps & Partial<import('@tresjs/core/dist/src/utils/pointerEvents.js').PointerEventHandlers>>>, Omit<import('@tresjs/core').InstanceProps<Group<import('three').Object3DEventMap>, typeof Group>, "object">>>>, {}, {}, import('vue').ComputedOptions, import('vue').MethodOptions, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
266
|
+
P: {};
|
|
267
|
+
B: {};
|
|
268
|
+
D: {};
|
|
269
|
+
C: {};
|
|
270
|
+
M: {};
|
|
271
|
+
Defaults: {};
|
|
272
|
+
}, Readonly<import('@tresjs/core').Mutable<import('@tresjs/core').Overwrite<Partial<import('@tresjs/core').Overwrite<Group<import('three').Object3DEventMap>, import('@tresjs/core').WithMathProps<Group<import('three').Object3DEventMap>> & import('@tresjs/core').VueProps & Partial<import('@tresjs/core/dist/src/utils/pointerEvents.js').PointerEventHandlers>>>, Omit<import('@tresjs/core').InstanceProps<Group<import('three').Object3DEventMap>, typeof Group>, "object">>>>, {}, {}, import('vue').ComputedOptions, import('vue').MethodOptions, {}> | null;
|
|
273
|
+
gPlane: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('@tresjs/core').Mutable<import('@tresjs/core').Overwrite<Partial<import('@tresjs/core').Overwrite<import('three').Mesh<import('three').BufferGeometry<import('three').NormalBufferAttributes, import('three').BufferGeometryEventMap>, import('three').Material | import('three').Material[], import('three').Object3DEventMap>, import('@tresjs/core').WithMathProps<import('three').Mesh<import('three').BufferGeometry<import('three').NormalBufferAttributes, import('three').BufferGeometryEventMap>, import('three').Material | import('three').Material[], import('three').Object3DEventMap>> & import('@tresjs/core').VueProps & Partial<import('@tresjs/core/dist/src/utils/pointerEvents.js').PointerEventHandlers>>>, Omit<import('@tresjs/core').InstanceProps<import('three').Mesh<import('three').BufferGeometry<import('three').NormalBufferAttributes, import('three').BufferGeometryEventMap>, import('three').Material | import('three').Material[], import('three').Object3DEventMap>, typeof import('three').Mesh>, "object">>>>, {}, {}, import('vue').ComputedOptions, import('vue').MethodOptions, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
274
|
+
P: {};
|
|
275
|
+
B: {};
|
|
276
|
+
D: {};
|
|
277
|
+
C: {};
|
|
278
|
+
M: {};
|
|
279
|
+
Defaults: {};
|
|
280
|
+
}, Readonly<import('@tresjs/core').Mutable<import('@tresjs/core').Overwrite<Partial<import('@tresjs/core').Overwrite<import('three').Mesh<import('three').BufferGeometry<import('three').NormalBufferAttributes, import('three').BufferGeometryEventMap>, import('three').Material | import('three').Material[], import('three').Object3DEventMap>, import('@tresjs/core').WithMathProps<import('three').Mesh<import('three').BufferGeometry<import('three').NormalBufferAttributes, import('three').BufferGeometryEventMap>, import('three').Material | import('three').Material[], import('three').Object3DEventMap>> & import('@tresjs/core').VueProps & Partial<import('@tresjs/core/dist/src/utils/pointerEvents.js').PointerEventHandlers>>>, Omit<import('@tresjs/core').InstanceProps<import('three').Mesh<import('three').BufferGeometry<import('three').NormalBufferAttributes, import('three').BufferGeometryEventMap>, import('three').Material | import('three').Material[], import('three').Object3DEventMap>, typeof import('three').Mesh>, "object">>>>, {}, {}, import('vue').ComputedOptions, import('vue').MethodOptions, {}> | null;
|
|
281
|
+
};
|
|
282
|
+
$slots: Readonly<{
|
|
283
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
284
|
+
}>;
|
|
285
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
286
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
287
|
+
$host: Element | null;
|
|
288
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
289
|
+
$el: any;
|
|
290
|
+
$options: import('vue').ComponentOptionsBase<Readonly<AccumulativeShadowsProps> & Readonly<{}>, {
|
|
291
|
+
instance: import('vue').ShallowRef<Group<import('three').Object3DEventMap> | undefined, Group<import('three').Object3DEventMap> | undefined>;
|
|
292
|
+
update: () => void;
|
|
293
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
294
|
+
alphaTest: number;
|
|
295
|
+
color: import('three').ColorRepresentation;
|
|
296
|
+
scale: number;
|
|
297
|
+
accumulate: boolean;
|
|
298
|
+
opacity: number;
|
|
299
|
+
toneMapped: boolean;
|
|
300
|
+
resolution: number;
|
|
301
|
+
frames: number;
|
|
302
|
+
blend: number;
|
|
303
|
+
once: boolean;
|
|
304
|
+
limit: number;
|
|
305
|
+
colorBlend: number;
|
|
306
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
307
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
308
|
+
created?: (() => void) | (() => void)[];
|
|
309
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
310
|
+
mounted?: (() => void) | (() => void)[];
|
|
311
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
312
|
+
updated?: (() => void) | (() => void)[];
|
|
313
|
+
activated?: (() => void) | (() => void)[];
|
|
314
|
+
deactivated?: (() => void) | (() => void)[];
|
|
315
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
316
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
317
|
+
destroyed?: (() => void) | (() => void)[];
|
|
318
|
+
unmounted?: (() => void) | (() => void)[];
|
|
319
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
320
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
321
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
322
|
+
};
|
|
323
|
+
$forceUpdate: () => void;
|
|
324
|
+
$nextTick: typeof import('vue').nextTick;
|
|
325
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
326
|
+
} & Readonly<{
|
|
327
|
+
alphaTest: number;
|
|
328
|
+
color: import('three').ColorRepresentation;
|
|
329
|
+
scale: number;
|
|
330
|
+
accumulate: boolean;
|
|
331
|
+
opacity: number;
|
|
332
|
+
toneMapped: boolean;
|
|
333
|
+
resolution: number;
|
|
334
|
+
frames: number;
|
|
335
|
+
blend: number;
|
|
336
|
+
once: boolean;
|
|
337
|
+
limit: number;
|
|
338
|
+
colorBlend: number;
|
|
339
|
+
}> & Omit<Readonly<AccumulativeShadowsProps> & Readonly<{}>, "instance" | "update" | ("alphaTest" | "color" | "scale" | "accumulate" | "opacity" | "toneMapped" | "resolution" | "frames" | "blend" | "once" | "limit" | "colorBlend")> & import('vue').ShallowUnwrapRef<{
|
|
340
|
+
instance: import('vue').ShallowRef<Group<import('three').Object3DEventMap> | undefined, Group<import('three').Object3DEventMap> | undefined>;
|
|
341
|
+
update: () => void;
|
|
342
|
+
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
343
|
+
$slots: {
|
|
344
|
+
default?(_: {}): any;
|
|
345
|
+
};
|
|
346
|
+
}) | null;
|
|
347
|
+
};
|
|
348
|
+
rootEl: any;
|
|
349
|
+
};
|
|
350
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
351
|
+
declare const __VLS_component: import('vue').DefineComponent<StageProps, {
|
|
352
|
+
instance: import('vue').ShallowRef<typeof Group | undefined, typeof Group | undefined>;
|
|
353
|
+
update: () => void;
|
|
354
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<StageProps> & Readonly<{}>, {
|
|
355
|
+
environment: EnvironmentPresetsType | Partial<EnvironmentOptions> | null;
|
|
356
|
+
intensity: number;
|
|
357
|
+
lighting: false | {
|
|
358
|
+
main: [x: number, y: number, z: number];
|
|
359
|
+
fill: [x: number, y: number, z: number];
|
|
360
|
+
} | "rembrandt" | "portrait" | "upfront" | "soft" | null;
|
|
361
|
+
shadows: boolean | "contact" | "accumulative" | StageShadows;
|
|
362
|
+
adjustCamera: boolean | number;
|
|
363
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
364
|
+
stageRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('@tresjs/core').Mutable<import('@tresjs/core').Overwrite<Partial<import('@tresjs/core').Overwrite<Group<import('three').Object3DEventMap>, import('@tresjs/core').WithMathProps<Group<import('three').Object3DEventMap>> & import('@tresjs/core').VueProps & Partial<import('@tresjs/core/dist/src/utils/pointerEvents.js').PointerEventHandlers>>>, Omit<import('@tresjs/core').InstanceProps<Group<import('three').Object3DEventMap>, typeof Group>, "object">>>>, {}, {}, import('vue').ComputedOptions, import('vue').MethodOptions, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
365
|
+
P: {};
|
|
366
|
+
B: {};
|
|
367
|
+
D: {};
|
|
368
|
+
C: {};
|
|
369
|
+
M: {};
|
|
370
|
+
Defaults: {};
|
|
371
|
+
}, Readonly<import('@tresjs/core').Mutable<import('@tresjs/core').Overwrite<Partial<import('@tresjs/core').Overwrite<Group<import('three').Object3DEventMap>, import('@tresjs/core').WithMathProps<Group<import('three').Object3DEventMap>> & import('@tresjs/core').VueProps & Partial<import('@tresjs/core/dist/src/utils/pointerEvents.js').PointerEventHandlers>>>, Omit<import('@tresjs/core').InstanceProps<Group<import('three').Object3DEventMap>, typeof Group>, "object">>>>, {}, {}, import('vue').ComputedOptions, import('vue').MethodOptions, {}> | null;
|
|
372
|
+
boundsRef: ({
|
|
373
|
+
$: import('vue').ComponentInternalInstance;
|
|
374
|
+
$data: {};
|
|
375
|
+
$props: {
|
|
376
|
+
readonly duration?: number | undefined;
|
|
377
|
+
readonly offset?: number | undefined;
|
|
378
|
+
readonly useResize?: boolean | undefined;
|
|
379
|
+
readonly useMounted?: boolean | undefined;
|
|
380
|
+
readonly clip?: boolean | undefined;
|
|
381
|
+
readonly easing?: ((t: number) => number) | undefined;
|
|
382
|
+
readonly onEnd?: ((sizeProps: import('./Bounds/Bounds').OnLookAtCallbackArg) => any) | undefined;
|
|
383
|
+
readonly onStart?: ((sizeProps: import('./Bounds/Bounds').OnLookAtCallbackArg) => any) | undefined;
|
|
384
|
+
readonly onCancel?: ((sizeProps: import('./Bounds/Bounds').OnLookAtCallbackArg) => any) | undefined;
|
|
385
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
386
|
+
$attrs: {
|
|
387
|
+
[x: string]: unknown;
|
|
388
|
+
};
|
|
389
|
+
$refs: {
|
|
390
|
+
[x: string]: unknown;
|
|
391
|
+
};
|
|
392
|
+
$slots: Readonly<{
|
|
393
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
394
|
+
}>;
|
|
395
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
396
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
397
|
+
$host: Element | null;
|
|
398
|
+
$emit: ((event: "end", sizeProps: import('./Bounds/Bounds').OnLookAtCallbackArg) => void) & ((event: "start", sizeProps: import('./Bounds/Bounds').OnLookAtCallbackArg) => void) & ((event: "cancel", sizeProps: import('./Bounds/Bounds').OnLookAtCallbackArg) => void);
|
|
399
|
+
$el: any;
|
|
400
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('./Bounds/component.vue').BoundsProps> & Readonly<{
|
|
401
|
+
onEnd?: ((sizeProps: import('./Bounds/Bounds').OnLookAtCallbackArg) => any) | undefined;
|
|
402
|
+
onStart?: ((sizeProps: import('./Bounds/Bounds').OnLookAtCallbackArg) => any) | undefined;
|
|
403
|
+
onCancel?: ((sizeProps: import('./Bounds/Bounds').OnLookAtCallbackArg) => any) | undefined;
|
|
404
|
+
}>, {
|
|
405
|
+
instance: import('./Bounds/Bounds').Bounds;
|
|
406
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
407
|
+
end: (sizeProps: import('./Bounds/Bounds').OnLookAtCallbackArg) => any;
|
|
408
|
+
start: (sizeProps: import('./Bounds/Bounds').OnLookAtCallbackArg) => any;
|
|
409
|
+
cancel: (sizeProps: import('./Bounds/Bounds').OnLookAtCallbackArg) => any;
|
|
410
|
+
}, string, {
|
|
411
|
+
duration: number;
|
|
412
|
+
offset: number;
|
|
413
|
+
useResize: boolean;
|
|
414
|
+
useMounted: boolean;
|
|
415
|
+
clip: boolean;
|
|
416
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
417
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
418
|
+
created?: (() => void) | (() => void)[];
|
|
419
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
420
|
+
mounted?: (() => void) | (() => void)[];
|
|
421
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
422
|
+
updated?: (() => void) | (() => void)[];
|
|
423
|
+
activated?: (() => void) | (() => void)[];
|
|
424
|
+
deactivated?: (() => void) | (() => void)[];
|
|
425
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
426
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
427
|
+
destroyed?: (() => void) | (() => void)[];
|
|
428
|
+
unmounted?: (() => void) | (() => void)[];
|
|
429
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
430
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
431
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
432
|
+
};
|
|
433
|
+
$forceUpdate: () => void;
|
|
434
|
+
$nextTick: typeof import('vue').nextTick;
|
|
435
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
436
|
+
} & Readonly<{
|
|
437
|
+
duration: number;
|
|
438
|
+
offset: number;
|
|
439
|
+
useResize: boolean;
|
|
440
|
+
useMounted: boolean;
|
|
441
|
+
clip: boolean;
|
|
442
|
+
}> & Omit<Readonly<import('./Bounds/component.vue').BoundsProps> & Readonly<{
|
|
443
|
+
onEnd?: ((sizeProps: import('./Bounds/Bounds').OnLookAtCallbackArg) => any) | undefined;
|
|
444
|
+
onStart?: ((sizeProps: import('./Bounds/Bounds').OnLookAtCallbackArg) => any) | undefined;
|
|
445
|
+
onCancel?: ((sizeProps: import('./Bounds/Bounds').OnLookAtCallbackArg) => any) | undefined;
|
|
446
|
+
}>, "instance" | ("duration" | "offset" | "useResize" | "useMounted" | "clip")> & import('vue').ShallowUnwrapRef<{
|
|
447
|
+
instance: import('./Bounds/Bounds').Bounds;
|
|
448
|
+
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
449
|
+
$slots: {
|
|
450
|
+
default?(_: {}): any;
|
|
451
|
+
};
|
|
452
|
+
}) | null;
|
|
453
|
+
alignRef: ({
|
|
454
|
+
$: import('vue').ComponentInternalInstance;
|
|
455
|
+
$data: {};
|
|
456
|
+
$props: {
|
|
457
|
+
readonly top?: boolean | undefined;
|
|
458
|
+
readonly right?: boolean | undefined;
|
|
459
|
+
readonly bottom?: boolean | undefined;
|
|
460
|
+
readonly left?: boolean | undefined;
|
|
461
|
+
readonly front?: boolean | undefined;
|
|
462
|
+
readonly back?: boolean | undefined;
|
|
463
|
+
readonly disable?: boolean | undefined;
|
|
464
|
+
readonly disableX?: boolean | undefined;
|
|
465
|
+
readonly disableY?: boolean | undefined;
|
|
466
|
+
readonly disableZ?: boolean | undefined;
|
|
467
|
+
readonly precise?: boolean | undefined;
|
|
468
|
+
readonly cacheKey?: import('vue').MaybeRefOrGetter<any>;
|
|
469
|
+
readonly onUpdate?: ((props: AlignCallbackOptions) => any) | undefined;
|
|
470
|
+
readonly onChange?: ((props: AlignCallbackOptions) => any) | undefined;
|
|
471
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
472
|
+
$attrs: {
|
|
473
|
+
[x: string]: unknown;
|
|
474
|
+
};
|
|
475
|
+
$refs: {
|
|
476
|
+
[x: string]: unknown;
|
|
477
|
+
} & {
|
|
478
|
+
ref: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('@tresjs/core').Mutable<import('@tresjs/core').Overwrite<Partial<import('@tresjs/core').Overwrite<Group<import('three').Object3DEventMap>, import('@tresjs/core').WithMathProps<Group<import('three').Object3DEventMap>> & import('@tresjs/core').VueProps & Partial<import('@tresjs/core/dist/src/utils/pointerEvents.js').PointerEventHandlers>>>, Omit<import('@tresjs/core').InstanceProps<Group<import('three').Object3DEventMap>, typeof Group>, "object">>>>, {}, {}, import('vue').ComputedOptions, import('vue').MethodOptions, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
479
|
+
P: {};
|
|
480
|
+
B: {};
|
|
481
|
+
D: {};
|
|
482
|
+
C: {};
|
|
483
|
+
M: {};
|
|
484
|
+
Defaults: {};
|
|
485
|
+
}, Readonly<import('@tresjs/core').Mutable<import('@tresjs/core').Overwrite<Partial<import('@tresjs/core').Overwrite<Group<import('three').Object3DEventMap>, import('@tresjs/core').WithMathProps<Group<import('three').Object3DEventMap>> & import('@tresjs/core').VueProps & Partial<import('@tresjs/core/dist/src/utils/pointerEvents.js').PointerEventHandlers>>>, Omit<import('@tresjs/core').InstanceProps<Group<import('three').Object3DEventMap>, typeof Group>, "object">>>>, {}, {}, import('vue').ComputedOptions, import('vue').MethodOptions, {}> | null;
|
|
486
|
+
outer: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('@tresjs/core').Mutable<import('@tresjs/core').Overwrite<Partial<import('@tresjs/core').Overwrite<Group<import('three').Object3DEventMap>, import('@tresjs/core').WithMathProps<Group<import('three').Object3DEventMap>> & import('@tresjs/core').VueProps & Partial<import('@tresjs/core/dist/src/utils/pointerEvents.js').PointerEventHandlers>>>, Omit<import('@tresjs/core').InstanceProps<Group<import('three').Object3DEventMap>, typeof Group>, "object">>>>, {}, {}, import('vue').ComputedOptions, import('vue').MethodOptions, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
487
|
+
P: {};
|
|
488
|
+
B: {};
|
|
489
|
+
D: {};
|
|
490
|
+
C: {};
|
|
491
|
+
M: {};
|
|
492
|
+
Defaults: {};
|
|
493
|
+
}, Readonly<import('@tresjs/core').Mutable<import('@tresjs/core').Overwrite<Partial<import('@tresjs/core').Overwrite<Group<import('three').Object3DEventMap>, import('@tresjs/core').WithMathProps<Group<import('three').Object3DEventMap>> & import('@tresjs/core').VueProps & Partial<import('@tresjs/core/dist/src/utils/pointerEvents.js').PointerEventHandlers>>>, Omit<import('@tresjs/core').InstanceProps<Group<import('three').Object3DEventMap>, typeof Group>, "object">>>>, {}, {}, import('vue').ComputedOptions, import('vue').MethodOptions, {}> | null;
|
|
494
|
+
inner: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('@tresjs/core').Mutable<import('@tresjs/core').Overwrite<Partial<import('@tresjs/core').Overwrite<Group<import('three').Object3DEventMap>, import('@tresjs/core').WithMathProps<Group<import('three').Object3DEventMap>> & import('@tresjs/core').VueProps & Partial<import('@tresjs/core/dist/src/utils/pointerEvents.js').PointerEventHandlers>>>, Omit<import('@tresjs/core').InstanceProps<Group<import('three').Object3DEventMap>, typeof Group>, "object">>>>, {}, {}, import('vue').ComputedOptions, import('vue').MethodOptions, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
495
|
+
P: {};
|
|
496
|
+
B: {};
|
|
497
|
+
D: {};
|
|
498
|
+
C: {};
|
|
499
|
+
M: {};
|
|
500
|
+
Defaults: {};
|
|
501
|
+
}, Readonly<import('@tresjs/core').Mutable<import('@tresjs/core').Overwrite<Partial<import('@tresjs/core').Overwrite<Group<import('three').Object3DEventMap>, import('@tresjs/core').WithMathProps<Group<import('three').Object3DEventMap>> & import('@tresjs/core').VueProps & Partial<import('@tresjs/core/dist/src/utils/pointerEvents.js').PointerEventHandlers>>>, Omit<import('@tresjs/core').InstanceProps<Group<import('three').Object3DEventMap>, typeof Group>, "object">>>>, {}, {}, import('vue').ComputedOptions, import('vue').MethodOptions, {}> | null;
|
|
502
|
+
};
|
|
503
|
+
$slots: Readonly<{
|
|
504
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
505
|
+
}>;
|
|
506
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
507
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
508
|
+
$host: Element | null;
|
|
509
|
+
$emit: ((event: "update", props: AlignCallbackOptions) => void) & ((event: "change", props: AlignCallbackOptions) => void);
|
|
510
|
+
$el: any;
|
|
511
|
+
$options: import('vue').ComponentOptionsBase<Readonly<AlignProps> & Readonly<{
|
|
512
|
+
onUpdate?: ((props: AlignCallbackOptions) => any) | undefined;
|
|
513
|
+
onChange?: ((props: AlignCallbackOptions) => any) | undefined;
|
|
514
|
+
}>, {
|
|
515
|
+
instance: import('vue').ShallowRef<Group<import('three').Object3DEventMap> | undefined, Group<import('three').Object3DEventMap> | undefined>;
|
|
516
|
+
update: () => void;
|
|
517
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
518
|
+
update: (props: AlignCallbackOptions) => void;
|
|
519
|
+
change: (props: AlignCallbackOptions) => void;
|
|
520
|
+
}, string, {
|
|
521
|
+
precise: boolean;
|
|
522
|
+
cacheKey: import('vue').MaybeRefOrGetter<any>;
|
|
523
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
524
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
525
|
+
created?: (() => void) | (() => void)[];
|
|
526
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
527
|
+
mounted?: (() => void) | (() => void)[];
|
|
528
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
529
|
+
updated?: (() => void) | (() => void)[];
|
|
530
|
+
activated?: (() => void) | (() => void)[];
|
|
531
|
+
deactivated?: (() => void) | (() => void)[];
|
|
532
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
533
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
534
|
+
destroyed?: (() => void) | (() => void)[];
|
|
535
|
+
unmounted?: (() => void) | (() => void)[];
|
|
536
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
537
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
538
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
539
|
+
};
|
|
540
|
+
$forceUpdate: () => void;
|
|
541
|
+
$nextTick: typeof import('vue').nextTick;
|
|
542
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
543
|
+
} & Readonly<{
|
|
544
|
+
precise: boolean;
|
|
545
|
+
cacheKey: import('vue').MaybeRefOrGetter<any>;
|
|
546
|
+
}> & Omit<Readonly<AlignProps> & Readonly<{
|
|
547
|
+
onUpdate?: ((props: AlignCallbackOptions) => any) | undefined;
|
|
548
|
+
onChange?: ((props: AlignCallbackOptions) => any) | undefined;
|
|
549
|
+
}>, "instance" | "update" | ("precise" | "cacheKey")> & import('vue').ShallowUnwrapRef<{
|
|
550
|
+
instance: import('vue').ShallowRef<Group<import('three').Object3DEventMap> | undefined, Group<import('three').Object3DEventMap> | undefined>;
|
|
551
|
+
update: () => void;
|
|
552
|
+
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
553
|
+
$slots: {
|
|
554
|
+
default?(_: {}): any;
|
|
555
|
+
};
|
|
556
|
+
}) | null;
|
|
557
|
+
accumulativeShadowsRef: ({
|
|
558
|
+
$: import('vue').ComponentInternalInstance;
|
|
559
|
+
$data: {};
|
|
560
|
+
$props: {
|
|
561
|
+
readonly once?: boolean | undefined;
|
|
562
|
+
readonly accumulate?: boolean | undefined;
|
|
563
|
+
readonly frames?: number | undefined;
|
|
564
|
+
readonly blend?: number | undefined;
|
|
565
|
+
readonly limit?: number | undefined;
|
|
566
|
+
readonly scale?: number | undefined;
|
|
567
|
+
readonly opacity?: number | undefined;
|
|
568
|
+
readonly alphaTest?: number | undefined;
|
|
569
|
+
readonly color?: import('three').ColorRepresentation | undefined;
|
|
570
|
+
readonly colorBlend?: number | undefined;
|
|
571
|
+
readonly resolution?: number | undefined;
|
|
572
|
+
readonly toneMapped?: boolean | undefined;
|
|
573
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
574
|
+
$attrs: {
|
|
575
|
+
[x: string]: unknown;
|
|
576
|
+
};
|
|
577
|
+
$refs: {
|
|
578
|
+
[x: string]: unknown;
|
|
579
|
+
} & {
|
|
580
|
+
gOuter: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('@tresjs/core').Mutable<import('@tresjs/core').Overwrite<Partial<import('@tresjs/core').Overwrite<Group<import('three').Object3DEventMap>, import('@tresjs/core').WithMathProps<Group<import('three').Object3DEventMap>> & import('@tresjs/core').VueProps & Partial<import('@tresjs/core/dist/src/utils/pointerEvents.js').PointerEventHandlers>>>, Omit<import('@tresjs/core').InstanceProps<Group<import('three').Object3DEventMap>, typeof Group>, "object">>>>, {}, {}, import('vue').ComputedOptions, import('vue').MethodOptions, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
581
|
+
P: {};
|
|
582
|
+
B: {};
|
|
583
|
+
D: {};
|
|
584
|
+
C: {};
|
|
585
|
+
M: {};
|
|
586
|
+
Defaults: {};
|
|
587
|
+
}, Readonly<import('@tresjs/core').Mutable<import('@tresjs/core').Overwrite<Partial<import('@tresjs/core').Overwrite<Group<import('three').Object3DEventMap>, import('@tresjs/core').WithMathProps<Group<import('three').Object3DEventMap>> & import('@tresjs/core').VueProps & Partial<import('@tresjs/core/dist/src/utils/pointerEvents.js').PointerEventHandlers>>>, Omit<import('@tresjs/core').InstanceProps<Group<import('three').Object3DEventMap>, typeof Group>, "object">>>>, {}, {}, import('vue').ComputedOptions, import('vue').MethodOptions, {}> | null;
|
|
588
|
+
gLights: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('@tresjs/core').Mutable<import('@tresjs/core').Overwrite<Partial<import('@tresjs/core').Overwrite<Group<import('three').Object3DEventMap>, import('@tresjs/core').WithMathProps<Group<import('three').Object3DEventMap>> & import('@tresjs/core').VueProps & Partial<import('@tresjs/core/dist/src/utils/pointerEvents.js').PointerEventHandlers>>>, Omit<import('@tresjs/core').InstanceProps<Group<import('three').Object3DEventMap>, typeof Group>, "object">>>>, {}, {}, import('vue').ComputedOptions, import('vue').MethodOptions, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
589
|
+
P: {};
|
|
590
|
+
B: {};
|
|
591
|
+
D: {};
|
|
592
|
+
C: {};
|
|
593
|
+
M: {};
|
|
594
|
+
Defaults: {};
|
|
595
|
+
}, Readonly<import('@tresjs/core').Mutable<import('@tresjs/core').Overwrite<Partial<import('@tresjs/core').Overwrite<Group<import('three').Object3DEventMap>, import('@tresjs/core').WithMathProps<Group<import('three').Object3DEventMap>> & import('@tresjs/core').VueProps & Partial<import('@tresjs/core/dist/src/utils/pointerEvents.js').PointerEventHandlers>>>, Omit<import('@tresjs/core').InstanceProps<Group<import('three').Object3DEventMap>, typeof Group>, "object">>>>, {}, {}, import('vue').ComputedOptions, import('vue').MethodOptions, {}> | null;
|
|
596
|
+
gPlane: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('@tresjs/core').Mutable<import('@tresjs/core').Overwrite<Partial<import('@tresjs/core').Overwrite<import('three').Mesh<import('three').BufferGeometry<import('three').NormalBufferAttributes, import('three').BufferGeometryEventMap>, import('three').Material | import('three').Material[], import('three').Object3DEventMap>, import('@tresjs/core').WithMathProps<import('three').Mesh<import('three').BufferGeometry<import('three').NormalBufferAttributes, import('three').BufferGeometryEventMap>, import('three').Material | import('three').Material[], import('three').Object3DEventMap>> & import('@tresjs/core').VueProps & Partial<import('@tresjs/core/dist/src/utils/pointerEvents.js').PointerEventHandlers>>>, Omit<import('@tresjs/core').InstanceProps<import('three').Mesh<import('three').BufferGeometry<import('three').NormalBufferAttributes, import('three').BufferGeometryEventMap>, import('three').Material | import('three').Material[], import('three').Object3DEventMap>, typeof import('three').Mesh>, "object">>>>, {}, {}, import('vue').ComputedOptions, import('vue').MethodOptions, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
597
|
+
P: {};
|
|
598
|
+
B: {};
|
|
599
|
+
D: {};
|
|
600
|
+
C: {};
|
|
601
|
+
M: {};
|
|
602
|
+
Defaults: {};
|
|
603
|
+
}, Readonly<import('@tresjs/core').Mutable<import('@tresjs/core').Overwrite<Partial<import('@tresjs/core').Overwrite<import('three').Mesh<import('three').BufferGeometry<import('three').NormalBufferAttributes, import('three').BufferGeometryEventMap>, import('three').Material | import('three').Material[], import('three').Object3DEventMap>, import('@tresjs/core').WithMathProps<import('three').Mesh<import('three').BufferGeometry<import('three').NormalBufferAttributes, import('three').BufferGeometryEventMap>, import('three').Material | import('three').Material[], import('three').Object3DEventMap>> & import('@tresjs/core').VueProps & Partial<import('@tresjs/core/dist/src/utils/pointerEvents.js').PointerEventHandlers>>>, Omit<import('@tresjs/core').InstanceProps<import('three').Mesh<import('three').BufferGeometry<import('three').NormalBufferAttributes, import('three').BufferGeometryEventMap>, import('three').Material | import('three').Material[], import('three').Object3DEventMap>, typeof import('three').Mesh>, "object">>>>, {}, {}, import('vue').ComputedOptions, import('vue').MethodOptions, {}> | null;
|
|
604
|
+
};
|
|
605
|
+
$slots: Readonly<{
|
|
606
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
607
|
+
}>;
|
|
608
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
609
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
610
|
+
$host: Element | null;
|
|
611
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
612
|
+
$el: any;
|
|
613
|
+
$options: import('vue').ComponentOptionsBase<Readonly<AccumulativeShadowsProps> & Readonly<{}>, {
|
|
614
|
+
instance: import('vue').ShallowRef<Group<import('three').Object3DEventMap> | undefined, Group<import('three').Object3DEventMap> | undefined>;
|
|
615
|
+
update: () => void;
|
|
616
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
617
|
+
alphaTest: number;
|
|
618
|
+
color: import('three').ColorRepresentation;
|
|
619
|
+
scale: number;
|
|
620
|
+
accumulate: boolean;
|
|
621
|
+
opacity: number;
|
|
622
|
+
toneMapped: boolean;
|
|
623
|
+
resolution: number;
|
|
624
|
+
frames: number;
|
|
625
|
+
blend: number;
|
|
626
|
+
once: boolean;
|
|
627
|
+
limit: number;
|
|
628
|
+
colorBlend: number;
|
|
629
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
630
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
631
|
+
created?: (() => void) | (() => void)[];
|
|
632
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
633
|
+
mounted?: (() => void) | (() => void)[];
|
|
634
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
635
|
+
updated?: (() => void) | (() => void)[];
|
|
636
|
+
activated?: (() => void) | (() => void)[];
|
|
637
|
+
deactivated?: (() => void) | (() => void)[];
|
|
638
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
639
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
640
|
+
destroyed?: (() => void) | (() => void)[];
|
|
641
|
+
unmounted?: (() => void) | (() => void)[];
|
|
642
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
643
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
644
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
645
|
+
};
|
|
646
|
+
$forceUpdate: () => void;
|
|
647
|
+
$nextTick: typeof import('vue').nextTick;
|
|
648
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
649
|
+
} & Readonly<{
|
|
650
|
+
alphaTest: number;
|
|
651
|
+
color: import('three').ColorRepresentation;
|
|
652
|
+
scale: number;
|
|
653
|
+
accumulate: boolean;
|
|
654
|
+
opacity: number;
|
|
655
|
+
toneMapped: boolean;
|
|
656
|
+
resolution: number;
|
|
657
|
+
frames: number;
|
|
658
|
+
blend: number;
|
|
659
|
+
once: boolean;
|
|
660
|
+
limit: number;
|
|
661
|
+
colorBlend: number;
|
|
662
|
+
}> & Omit<Readonly<AccumulativeShadowsProps> & Readonly<{}>, "instance" | "update" | ("alphaTest" | "color" | "scale" | "accumulate" | "opacity" | "toneMapped" | "resolution" | "frames" | "blend" | "once" | "limit" | "colorBlend")> & import('vue').ShallowUnwrapRef<{
|
|
663
|
+
instance: import('vue').ShallowRef<Group<import('three').Object3DEventMap> | undefined, Group<import('three').Object3DEventMap> | undefined>;
|
|
664
|
+
update: () => void;
|
|
665
|
+
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
666
|
+
$slots: {
|
|
667
|
+
default?(_: {}): any;
|
|
668
|
+
};
|
|
669
|
+
}) | null;
|
|
670
|
+
}, any>;
|
|
671
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
672
|
+
export default _default;
|
|
673
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
674
|
+
new (): {
|
|
675
|
+
$slots: S;
|
|
676
|
+
};
|
|
677
|
+
};
|