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

camera hmr

This commit is contained in:
Kevin Levron 2020-09-19 17:52:02 +02:00
parent a93693cba3
commit 0a0e495e2c

View File

@ -1,32 +1,42 @@
import { PerspectiveCamera, Vector3 } from 'three'; import { PerspectiveCamera, Vector3 } from 'three';
import { setFromProp } from '../tools.js'; import { toRef, watch } from 'vue';
import useBindProp from '../use/useBindProp.js';
export default { export default {
inject: ['three'], inject: ['three'],
props: { props: {
aspect: {
type: Number,
default: 1,
},
far: {
type: Number,
default: 2000,
},
fov: { fov: {
type: Number, type: Number,
default: 50, default: 50,
}, },
near: {
type: Number,
default: 0.1,
},
position: { position: {
type: [Object, Vector3], type: [Object, Vector3],
default: { x: 0, y: 0, z: 0 }, default: { x: 0, y: 0, z: 0 },
}, },
}, },
watch: {
fov() {
this.camera.fov = this.fov;
},
position: {
deep: true,
handler() {
setFromProp(this.camera.position, this.position);
},
},
},
created() { created() {
this.camera = new PerspectiveCamera(this.fov); this.camera = new PerspectiveCamera(this.fov, this.aspect, this.near, this.far);
setFromProp(this.camera.position, this.position); useBindProp(this, 'position', this.camera.position);
['aspect', 'far', 'fov', 'near'].forEach(p => {
watch(() => this[p], () => {
this.camera[p] = this[p];
this.camera.updateProjectionMatrix();
});
});
this.three.camera = this.camera; this.three.camera = this.camera;
}, },
render() { render() {