Skip to content

Commit

Permalink
fix(SkyDemo): value.value -> value
Browse files Browse the repository at this point in the history
  • Loading branch information
andretchen0 authored May 16, 2024
1 parent 4f9b61b commit 82fe77b
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions playground/src/pages/staging/SkyDemo.vue
Original file line number Diff line number Diff line change
Expand Up @@ -28,17 +28,17 @@ const { turbidity, rayleigh, mieCoefficient, mieDirectionalG, elevation, azimuth
<TresLeches class="important-fixed important-left-2 important-w-90" />
<TresCanvas
v-bind="gl"
:tone-mapping-exposure="exposure.value.value"
:tone-mapping-exposure="exposure.value"
>
<TresPerspectiveCamera :position="[0, 100, 2000]" />
<Sky
:elevation="elevation.value.value"
:azimuth="azimuth.value.value"
:mie-coefficient="mieCoefficient.value.value"
:mie-directional-g="mieDirectionalG.value.value"
:rayleigh="rayleigh.value.value"
:turbidity="turbidity.value.value"
:distance="distance.value.value"
:elevation="elevation.value"
:azimuth="azimuth.value"
:mie-coefficient="mieCoefficient.value"
:mie-directional-g="mieDirectionalG.value"
:rayleigh="rayleigh.value"
:turbidity="turbidity.value"
:distance="distance.value"
/>
<OrbitControls
:enable-pan="false"
Expand Down

0 comments on commit 82fe77b

Please sign in to comment.