mirror of
https://github.com/troisjs/trois.git
synced 2024-11-24 04:12:02 +08:00
47 lines
1.4 KiB
TypeScript
47 lines
1.4 KiB
TypeScript
import { defineComponent, inject, PropType, watch } from 'vue'
|
|
import { OrthographicCamera } from 'three'
|
|
import { bindProp } from '../tools'
|
|
import Camera from './Camera'
|
|
import { Vector3PropInterface } from './Object3D'
|
|
import { RendererInjectionKey } from './Renderer'
|
|
|
|
export default defineComponent({
|
|
extends: Camera,
|
|
name: 'OrthographicCamera',
|
|
props: {
|
|
left: { type: Number, default: -1 },
|
|
right: { type: Number, default: 1 },
|
|
top: { type: Number, default: 1 },
|
|
bottom: { type: Number, default: -1 },
|
|
near: { type: Number, default: 0.1 },
|
|
far: { type: Number, default: 2000 },
|
|
zoom: { type: Number, default: 1 },
|
|
position: { type: Object as PropType<Vector3PropInterface>, default: () => ({ x: 0, y: 0, z: 0 }) },
|
|
},
|
|
setup(props) {
|
|
const renderer = inject(RendererInjectionKey)
|
|
if (!renderer) {
|
|
console.error('Renderer not found')
|
|
return
|
|
}
|
|
|
|
const camera = new OrthographicCamera(props.left, props.right, props.top, props.bottom, props.near, props.far)
|
|
renderer.camera = camera
|
|
|
|
bindProp(props, 'position', camera)
|
|
|
|
const watchProps = ['left', 'right', 'top', 'bottom', 'near', 'far', 'zoom']
|
|
watchProps.forEach(p => {
|
|
// @ts-ignore
|
|
watch(() => props[p], (value) => {
|
|
// @ts-ignore
|
|
camera[p] = value
|
|
camera.updateProjectionMatrix()
|
|
})
|
|
})
|
|
|
|
return { renderer, camera }
|
|
},
|
|
__hmrId: 'OrthographicCamera',
|
|
})
|