import { OrthographicCamera } from 'three'; import { watch } from 'vue'; import { bindProp } from '../tools'; import Camera from './Camera.js'; export default { extends: Camera, name: 'OrthographicCamera', inject: ['three'], 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, default: { x: 0, y: 0, z: 0 } }, }, created() { this.camera = new OrthographicCamera(this.left, this.right, this.top, this.bottom, this.near, this.far); bindProp(this, 'position', this.camera); ['left', 'right', 'top', 'bottom', 'near', 'far', 'zoom'].forEach(p => { watch(() => this[p], () => { this.camera[p] = this[p]; this.camera.updateProjectionMatrix(); }); }); this.three.camera = this.camera; }, __hmrId: 'OrthographicCamera', };