1
0
mirror of https://github.com/troisjs/trois.git synced 2024-11-24 20:32:02 +08:00
trois/src/core/Camera.ts
2021-04-16 04:12:41 +02:00

13 lines
376 B
TypeScript

import { defineComponent } from 'vue'
// import Object3D from '../core/Object3D'
export default defineComponent({
// TODO: eventually extend Object3D, for now: error 'injection "scene" not found'
// because camera is a sibling of scene in Trois
// extends: Object3D,
inject: ['three'],
render() {
return this.$slots.default ? this.$slots.default() : []
},
})