run-scene-v2 0.1.150 → 0.1.151
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/build/index.js +1 -1
- package/package.json +1 -1
- package/types/src/ModelEx/ModelEx.d.ts +2 -0
package/package.json
CHANGED
|
@@ -224,6 +224,8 @@ export default class EngineModel {
|
|
|
224
224
|
renderer?: E.Render;
|
|
225
225
|
inputBoxHelper?: any;
|
|
226
226
|
zoom?: number;
|
|
227
|
+
/** 直接指定聚焦距离(优先级高于 zoom);传入数字如 50 则相机固定远离聚焦点 50 单位 */
|
|
228
|
+
distance?: number;
|
|
227
229
|
keepMinDistance?: boolean;
|
|
228
230
|
}) => void;
|
|
229
231
|
instanceModel(m: E.unknowModel): void;
|