-
-
Notifications
You must be signed in to change notification settings - Fork 108
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6819e24
commit 46cdd00
Showing
7 changed files
with
269 additions
and
141 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,66 @@ | ||
<script setup lang="ts"> | ||
import { TresCanvas } from '/@/' | ||
import { BasicShadowMap, NoToneMapping, sRGBEncoding } from 'three' | ||
import { TresCanvas } from '/@/components/TresCanvas' | ||
import { GLTFModel, OrbitControls } from '@tresjs/cientos' | ||
const state = reactive({ | ||
clearColor: '#201919', | ||
shadows: true, | ||
alpha: false, | ||
shadowMapType: BasicShadowMap, | ||
outputEncoding: sRGBEncoding, | ||
toneMapping: NoToneMapping, | ||
}) | ||
const state2 = reactive({ | ||
clearColor: '#4f4f4f', | ||
shadows: true, | ||
alpha: false, | ||
/* shadowMapType: BasicShadowMap, | ||
outputEncoding: sRGBEncoding, | ||
toneMapping: NoToneMapping, */ | ||
}) | ||
</script> | ||
<template> | ||
<div class="flex"> | ||
<div class="w-1/2 aspect-video"> | ||
<TresCanvas /> | ||
<TresCanvas v-bind="state"> | ||
<TresPerspectiveCamera :position="[5, 5, 5]" :fov="45" :near="0.1" :far="1000" :look-at="[0, 4, 0]" /> | ||
<OrbitControls /> | ||
|
||
<TresAmbientLight :intensity="0.5" /> | ||
<TresMesh :position="[0, 4, 0]"> | ||
<TresBoxGeometry :args="[1, 1, 1]" /> | ||
<TresMeshToonMaterial color="cyan" /> | ||
</TresMesh> | ||
|
||
<Suspense> | ||
<TestSphere /> | ||
</Suspense> | ||
<TresDirectionalLight :position="[0, 2, 4]" :intensity="1" /> | ||
</TresCanvas> | ||
</div> | ||
<div class="w-1/2 aspect-video"> | ||
<TresCanvas v-bind="state2"> | ||
<TresPerspectiveCamera :position="[5, 5, 5]" :fov="45" :near="0.1" :far="1000" :look-at="[0, 4, 0]" /> | ||
<TresAmbientLight :intensity="0.5" /> | ||
|
||
<TresMesh :position="[0, 4, 0]" cast-shadow> | ||
<TresSphereGeometry :args="[2, 32, 32]" /> | ||
<TresMeshToonMaterial color="yellow" /> | ||
</TresMesh> | ||
<OrbitControls /> | ||
|
||
<Suspense> | ||
<GLTFModel | ||
path="https://raw.githubusercontent.com/Tresjs/assets/main/models/gltf/aku-aku/AkuAku.gltf" | ||
draco | ||
/> | ||
</Suspense> | ||
|
||
<TresDirectionalLight :position="[0, 2, 4]" :intensity="1" cast-shadow /> | ||
</TresCanvas> | ||
</div> | ||
<!-- <div class="w-1/2 aspect-video"> | ||
<TresCanvas /> | ||
</div> --> | ||
</div> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<script setup lang="ts"></script> | ||
<template> | ||
<MultipleCanvas></MultipleCanvas> | ||
<MultipleCanvas /> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,164 @@ | ||
import { App, defineComponent, h, onMounted, onUnmounted, onUpdated, provide, ref, watch, watchEffect } from 'vue' | ||
import * as THREE from 'three' | ||
import { PerspectiveCamera, ShadowMapType, TextureEncoding, ToneMapping } from 'three' | ||
import { createTres } from '/@/core/renderer' | ||
import { useLogger } from '/@/composables' | ||
import { useCamera, useRenderer, useRenderLoop, useRaycaster, useTres } from '/@/composables' | ||
import { extend } from '/@/core/catalogue' | ||
import { RendererPresetsType } from '/@/composables/useRenderer/const' | ||
import { TresObject } from '../types' | ||
|
||
export interface TresSceneProps { | ||
shadows?: boolean | ||
shadowMapType?: ShadowMapType | ||
physicallyCorrectLights?: boolean | ||
useLegacyLights?: boolean | ||
outputEncoding?: TextureEncoding | ||
toneMapping?: ToneMapping | ||
toneMappingExposure?: number | ||
context?: WebGLRenderingContext | ||
powerPreference?: 'high-performance' | 'low-power' | 'default' | ||
preserveDrawingBuffer?: boolean | ||
clearColor?: string | ||
windowSize?: boolean | ||
preset?: RendererPresetsType | ||
} | ||
/** | ||
* Vue component for rendering a Tres component. | ||
*/ | ||
|
||
const { logWarning } = useLogger() | ||
|
||
export const TresScene = defineComponent<TresSceneProps>({ | ||
name: 'TresScene', | ||
props: [ | ||
'shadows', | ||
'shadowMapType', | ||
'physicallyCorrectLights', | ||
'useLegacyLights', | ||
'outputEncoding', | ||
'toneMapping', | ||
'toneMappingExposure', | ||
'context', | ||
'powerPreference', | ||
'preserveDrawingBuffer', | ||
'clearColor', | ||
'windowSize', | ||
'preset', | ||
] as unknown as undefined, | ||
setup(props, { slots, expose }) { | ||
if (props.physicallyCorrectLights === true) { | ||
logWarning('physicallyCorrectLights is deprecated, useLegacyLights is now false by default') | ||
} | ||
|
||
const container = ref<HTMLElement>() | ||
const canvas = ref<HTMLElement>() | ||
const scene = new THREE.Scene() | ||
const { state, setState } = useTres() | ||
|
||
setState('scene', scene) | ||
setState('canvas', canvas) | ||
setState('container', container) | ||
|
||
const { pushCamera } = useCamera() | ||
pushCamera(new PerspectiveCamera()) | ||
|
||
onMounted(() => { | ||
initRenderer() | ||
}) | ||
|
||
onUnmounted(() => { | ||
setState('renderer', null) | ||
}) | ||
|
||
function initRenderer() { | ||
const { renderer } = useRenderer(props) | ||
|
||
const { activeCamera } = useCamera() | ||
|
||
const { onLoop } = useRenderLoop() | ||
|
||
const { raycaster, pointer } = useRaycaster() | ||
|
||
watchEffect(() => { | ||
if (activeCamera.value) raycaster.value.setFromCamera(pointer.value, activeCamera.value) | ||
}) | ||
|
||
onLoop(() => { | ||
if (activeCamera.value) renderer.value?.render(scene, activeCamera.value) | ||
}) | ||
} | ||
|
||
let app: App | ||
|
||
function mountApp() { | ||
app = createTres(slots) | ||
app.provide('useTres', useTres()) | ||
app.provide('extend', extend) | ||
app.mount(scene as unknown as TresObject) | ||
} | ||
|
||
mountApp() | ||
|
||
expose({ | ||
scene, | ||
}) | ||
|
||
function dispose() { | ||
scene.children = [] | ||
app.unmount() | ||
mountApp() | ||
} | ||
|
||
if (import.meta.hot) { | ||
import.meta.hot.on('vite:afterUpdate', dispose) | ||
} | ||
|
||
return () => { | ||
return h( | ||
h( | ||
'div', | ||
{ | ||
ref: container, | ||
'data-scene': scene.uuid, | ||
key: scene.uuid, | ||
style: { | ||
position: 'relative', | ||
width: '100%', | ||
height: '100%', | ||
pointerEvents: 'auto', | ||
touchAction: 'none', | ||
}, | ||
}, | ||
[ | ||
h( | ||
'div', | ||
{ | ||
style: { | ||
width: '100%', | ||
height: '100%', | ||
}, | ||
}, | ||
[ | ||
h('canvas', { | ||
ref: canvas, | ||
'data-scene': scene.uuid, | ||
style: { | ||
display: 'block', | ||
width: '100%', | ||
height: '100%', | ||
position: props.windowSize ? 'fixed' : 'absolute', | ||
top: 0, | ||
left: 0, | ||
}, | ||
}), | ||
], | ||
), | ||
], | ||
), | ||
) | ||
} | ||
}, | ||
}) | ||
|
||
export default TresScene |
Oops, something went wrong.