1
0
mirror of https://github.com/troisjs/trois.git synced 2024-11-24 12:22:03 +08:00
trois/src/core/Scene.ts

40 lines
999 B
TypeScript
Raw Normal View History

2021-04-20 01:37:11 +08:00
import { defineComponent, inject, watch } from 'vue'
2021-04-16 09:19:50 +08:00
import { Scene, Color, Object3D } from 'three'
2021-04-20 01:37:11 +08:00
import { ThreeInterface } from './useThree'
2020-09-14 22:57:11 +08:00
export default defineComponent({
2021-03-07 20:22:54 +08:00
name: 'Scene',
2021-04-20 01:37:11 +08:00
// inject: ['three'],
2020-09-15 04:53:30 +08:00
props: {
2021-04-20 01:37:11 +08:00
// id: String,
2020-09-16 01:50:51 +08:00
background: [String, Number],
2020-09-15 04:53:30 +08:00
},
2020-10-03 21:57:32 +08:00
setup(props) {
2021-04-20 01:37:11 +08:00
const three = inject('three') as ThreeInterface
2021-04-16 09:19:50 +08:00
const scene = new Scene()
if (props.background) {
scene.background = new Color(props.background)
}
watch(() => props.background, (value) => { if (scene.background instanceof Color && value) scene.background.set(value) })
2021-04-20 01:37:11 +08:00
return { three, scene }
2020-09-14 22:57:11 +08:00
},
provide() {
return {
scene: this.scene,
2021-04-16 09:19:50 +08:00
}
2020-09-14 22:57:11 +08:00
},
2021-04-19 04:27:53 +08:00
created() {
2020-09-16 21:30:39 +08:00
if (!this.three.scene) {
2021-04-16 09:19:50 +08:00
this.three.scene = this.scene
2020-09-16 21:30:39 +08:00
}
2020-09-14 22:57:11 +08:00
},
2020-10-03 21:57:32 +08:00
methods: {
2021-04-16 09:19:50 +08:00
add(o: Object3D) { this.scene.add(o) },
remove(o: Object3D) { this.scene.remove(o) },
2020-10-03 21:57:32 +08:00
},
2020-09-14 22:57:11 +08:00
render() {
2021-04-16 09:19:50 +08:00
return this.$slots.default ? this.$slots.default() : []
2020-09-14 22:57:11 +08:00
},
2021-03-07 22:14:34 +08:00
__hmrId: 'Scene',
2021-04-16 09:19:50 +08:00
})