1
0
mirror of https://github.com/troisjs/trois.git synced 2024-11-24 04:12:02 +08:00
trois/src/core/OrthographicCamera.js

35 lines
1.0 KiB
JavaScript
Raw Normal View History

2021-03-07 18:45:25 +08:00
import { OrthographicCamera } from 'three';
2020-10-08 05:38:39 +08:00
import { watch } from 'vue';
2021-03-25 21:24:30 +08:00
import { bindProp } from '../tools';
import Camera from './Camera.js';
2020-10-08 05:38:39 +08:00
export default {
extends: Camera,
2021-03-07 20:22:54 +08:00
name: 'OrthographicCamera',
2020-10-08 05:38:39 +08:00
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 },
2021-03-07 18:45:25 +08:00
position: { type: Object, default: { x: 0, y: 0, z: 0 } },
2020-10-08 05:38:39 +08:00
},
created() {
this.camera = new OrthographicCamera(this.left, this.right, this.top, this.bottom, this.near, this.far);
2021-03-07 18:45:25 +08:00
bindProp(this, 'position', this.camera);
2020-10-08 05:38:39 +08:00
['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;
},
2021-03-07 22:14:34 +08:00
__hmrId: 'OrthographicCamera',
2020-10-08 05:38:39 +08:00
};