feat(All):Initial

This commit is contained in:
2025-10-04 23:36:07 +08:00
commit 2b4e5d2668
1321 changed files with 415958 additions and 0 deletions
@@ -0,0 +1,24 @@
export const PreviewOptions = (): IPreviewSetting => ({
// 场景canvas容器
container: undefined,
// 场景背景及环境贴图
hdr: undefined,
// 请求相关
request:{
baseUrl:""
},
// 相机控制器
control: {
minAzimuthAngle: -Infinity,
maxAzimuthAngle: Infinity,
minDistance: 0.0,
maxDistance: Infinity,
maxPolarAngle: Math.PI,
minPolarAngle: 0,
maxZoom:Infinity,
minZoom:0.01,
dollySpeed:1,
// 缩放是否以鼠标位置为中心
dollyToCursor: false,
}
})