Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(cientos): 178 v-light-helper #214

Merged
merged 6 commits into from
Sep 18, 2023
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/.vitepress/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ export default defineConfig({
collapsed: true,
items: [
{ text: 'v-log', link: '/guide/directives/v-log' },
{ text: 'v-light-helper', link: '/guide/directives/v-light-helper' },
],
},
],
Expand Down
34 changes: 34 additions & 0 deletions docs/guide/directives/v-light-helper.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# v-light-helper 🔆

With the new directive v-light-helper provided by **TresJS**, you can add fast the respective helper to your lights with just one line of code 😍.

```vue{3}
<script setup lang="ts">
import { OrbitControls, Sphere, vLightHelper } from '@tresjs/cientos'
</script>
<template>
<TresCanvas >
<TresPerspectiveCamera :position="[0, 2, 5]" />
<TresDirectionalLight
v-light-helper
/>
<TresPointLight
v-light-helper
/>
<TresSpotLight
v-light-helper
/>

<TresHemisphereLight
v-light-helper
/>
</TresCanvas>
</template>
```

Note that you can pass a modifier with the name of a property, for example `v-log:material`, and will log directly the `material` property
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy paste ;) @JaimeTorrealba


::: warning
This directive just work with the following lights:DirectionalLight,PointLight, SpotLight, HemisphereLight.
By this way you can't tweaks the props for the helper if you need to do that, please use the normal helper instance
:::
74 changes: 74 additions & 0 deletions playground/src/pages/directives/vLightHelper.vue
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>
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ onLoop(({ elapsed }) => {
<TresCanvas v-bind="gl">
<TresPerspectiveCamera :position="[0, 2, 5]" />
<Stars
v-log
:radius="options.radius"
:depth="options.depth"
:count="options.count"
Expand Down
2 changes: 1 addition & 1 deletion playground/src/pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

<template>
<Suspense>
<DirectivesDemo />
<ModelsDemo />
</Suspense>
</template>
2 changes: 2 additions & 0 deletions playground/src/router/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import {
stagingRoutes,
loadersRoutes,
materialsRoutes,
directivesRoutes,
} from './routes'

const routes = [
Expand All @@ -18,6 +19,7 @@ const routes = [
...stagingRoutes,
...loadersRoutes,
...materialsRoutes,
...directivesRoutes,
]

export const router = createRouter({
Expand Down
12 changes: 12 additions & 0 deletions playground/src/router/routes/directives.ts
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'),
},
]
2 changes: 2 additions & 0 deletions playground/src/router/routes/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { controlsRoutes } from './controls'
import { abstractionsRoutes } from './abstractions'
import { stagingRoutes } from './staging'
import { loadersRoutes } from './loaders'
import { directivesRoutes } from './directives'
import { materialsRoutes } from './materials'

export {
Expand All @@ -10,4 +11,5 @@ export {
stagingRoutes,
loadersRoutes,
materialsRoutes,
directivesRoutes,
}
3 changes: 2 additions & 1 deletion src/core/directives/index.ts
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 }
22 changes: 22 additions & 0 deletions src/core/directives/vLightHelper.ts
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,
}