@combeenation/3d-viewer 4.1.1-alpha1 → 4.2.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.
|
@@ -212,8 +212,9 @@ declare type AutofocusSettings = {
|
|
|
212
212
|
adjustWheelPrecision?: boolean;
|
|
213
213
|
adjustPanningSensibility?: boolean;
|
|
214
214
|
adjustPinchPrecision?: boolean;
|
|
215
|
-
/** Desired camera
|
|
215
|
+
/** Desired horizontal camera angle, this won't be overwritten by the autofocus function */
|
|
216
216
|
alpha?: number;
|
|
217
|
+
/** Desired vertical camera angle, this won't be overwritten by the autofocus function */
|
|
217
218
|
beta?: number;
|
|
218
219
|
/** Optional animation for the focusing camera movement */
|
|
219
220
|
animation?: string | AnimationDefinition;
|
package/package.json
CHANGED
|
@@ -234,8 +234,9 @@ type AutofocusSettings = {
|
|
|
234
234
|
adjustWheelPrecision?: boolean,
|
|
235
235
|
adjustPanningSensibility?: boolean,
|
|
236
236
|
adjustPinchPrecision?: boolean,
|
|
237
|
-
/** Desired camera
|
|
237
|
+
/** Desired horizontal camera angle, this won't be overwritten by the autofocus function */
|
|
238
238
|
alpha?: number;
|
|
239
|
+
/** Desired vertical camera angle, this won't be overwritten by the autofocus function */
|
|
239
240
|
beta?: number;
|
|
240
241
|
/** Optional animation for the focusing camera movement */
|
|
241
242
|
animation?: string | AnimationDefinition
|