-
-
Notifications
You must be signed in to change notification settings - Fork 40
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
c67e51b
commit d3e79d7
Showing
8 changed files
with
116 additions
and
2 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 |
---|---|---|
@@ -0,0 +1,74 @@ | ||
<script setup lang="ts"> | ||
import { reactive, shallowRef } from 'vue' | ||
import { TresCanvas, useRenderLoop } from '@tresjs/core' | ||
import { OrbitControls, Sphere, vLightHelper } from '@tresjs/cientos' | ||
import { SRGBColorSpace, NoToneMapping } from 'three' | ||
const gl = { | ||
clearColor: '#333', | ||
outputColorSpace: SRGBColorSpace, | ||
toneMapping: NoToneMapping, | ||
} | ||
const directionalLightRef = shallowRef() | ||
const pointLightRef = shallowRef() | ||
const spotLightRef = shallowRef() | ||
const { onLoop } = useRenderLoop() | ||
onLoop(({ elapsed }) => { | ||
if (directionalLightRef.value ) { | ||
directionalLightRef.value.position.y = Math.sin(elapsed) * 1.5 + 2 | ||
} | ||
if (pointLightRef.value) { | ||
const lightAngle = elapsed * 0.5 | ||
pointLightRef.value.position.x = Math.cos(lightAngle) * 4 | ||
pointLightRef.value.position.z = Math.sin(lightAngle) * 4 | ||
} | ||
}) | ||
</script> | ||
|
||
<template> | ||
<TresCanvas v-bind="gl"> | ||
<TresPerspectiveCamera :position="[0, 2, 5]" /> | ||
<Sphere | ||
v-light-helper | ||
:scale="0.5" | ||
> | ||
<TresMeshStandardMaterial :color="0x222" /> | ||
</Sphere> | ||
<TresAmbientLight :color="0xffffff" /> | ||
<TresDirectionalLight | ||
ref="directionalLightRef" | ||
v-light-helper | ||
:color="0xffffff" | ||
:intensity="5" | ||
:position="[0, 2, 4]" | ||
/> | ||
<TresPointLight | ||
ref="pointLightRef" | ||
v-light-helper | ||
:color="0xff0000" | ||
:intensity="100" | ||
:position="[0, 1, 1]" | ||
/> | ||
<TresSpotLight | ||
ref="spotLightRef" | ||
v-light-helper | ||
:color="0x00ff00" | ||
:intensity="10" | ||
:position="[0, 1, 1]" | ||
/> | ||
|
||
<TresHemisphereLight | ||
v-light-helper | ||
:color="0x0000ff" | ||
:ground-color="0x00ffff" | ||
:intensity="50" | ||
/> | ||
|
||
<TresGridHelper :args="[10, 10]" /> | ||
<OrbitControls /> | ||
</TresCanvas> | ||
</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 |
---|---|---|
|
@@ -2,6 +2,6 @@ | |
<template> | ||
<Suspense> | ||
<DirectivesDemo /> | ||
<ModelsDemo /> | ||
</Suspense> | ||
</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,12 @@ | ||
export const directivesRoutes = [ | ||
{ | ||
path: '/directives/vlog', | ||
name: 'vLog', | ||
component: () => import('../../pages/directives/vLog.vue'), | ||
}, | ||
{ | ||
path: '/directives/v-light-helper', | ||
name: 'vLightHelper', | ||
component: () => import('../../pages/directives/vLightHelper.vue'), | ||
}, | ||
] |
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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
import { vLog } from './vLog' | ||
import { vLightHelper } from './vLightHelper' | ||
|
||
export { vLog } | ||
export { vLog, vLightHelper } |
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,22 @@ | ||
import { useLogger } from '@tresjs/core' | ||
import { DirectionalLightHelper, PointLightHelper, SpotLightHelper, HemisphereLightHelper } from 'three' | ||
|
||
const { logWarning } = useLogger() | ||
|
||
export const vLightHelper = { | ||
mounted: (el: any) => { | ||
if (!el.isLight) { | ||
logWarning(`${el.type} is not a light`) | ||
return | ||
} | ||
const currentHelper = helpers[el.type] | ||
el.parent.add(new currentHelper(el)) | ||
}, | ||
} | ||
|
||
const helpers = { | ||
DirectionalLight: DirectionalLightHelper, | ||
PointLight: PointLightHelper, | ||
SpotLight: SpotLightHelper, | ||
HemisphereLight: HemisphereLightHelper, | ||
} |