相机位置范围
将相机的位置限制在一个范围内
示例
js
import { createThreeUseApp } from 'threeuse'
import { cameraRange } from 'threeuse/plugin'
const app = createThreeUseApp()
app.use(cameraRange, options?)
说明
通过调用 createThreeUseApp
创建的实例对象上的 use
方法安装插件
options
参数 | 说明 | 默认值 |
---|---|---|
cameraRange | 限制的范围 | Range |
Range
参数 | 说明 | 默认值 |
---|---|---|
x | x轴限制的范围 | { min: -1950, max: 1950 } |
y | y轴限制的范围 | { min: 1, max: 1950 }, |
z | z轴限制的范围 | { min: -1950, max: 1950 } |