|
| 1 | +<script setup lang="ts"> |
| 2 | +import { ContactShadows, Environment, OrbitControls } from '@tresjs/cientos' |
| 3 | +import { TresCanvas } from '@tresjs/core' |
| 4 | +import { TresLeches, useControls } from '@tresjs/leches' |
| 5 | +import { NoToneMapping } from 'three' |
| 6 | +import { EffectComposerPmndrs, SepiaPmndrs } from '@tresjs/post-processing' |
| 7 | +import { BlendFunction } from 'postprocessing' |
| 8 | +
|
| 9 | +import '@tresjs/leches/styles' |
| 10 | +
|
| 11 | +const gl = { |
| 12 | + clearColor: '#ffffff', |
| 13 | + toneMapping: NoToneMapping, |
| 14 | + multisampling: 8, |
| 15 | +} |
| 16 | +
|
| 17 | +const { intensity, blendFunction } = useControls({ |
| 18 | + intensity: { value: 1.0, step: 0.1, max: 5.0 }, |
| 19 | + blendFunction: { |
| 20 | + options: Object.keys(BlendFunction).map(key => ({ |
| 21 | + text: key, |
| 22 | + value: BlendFunction[key], |
| 23 | + })), |
| 24 | + value: BlendFunction.NORMAL, |
| 25 | + }, |
| 26 | +}) |
| 27 | +</script> |
| 28 | + |
| 29 | +<template> |
| 30 | + <TresLeches style="left: initial;right:10px; top:10px;" /> |
| 31 | + |
| 32 | + <TresCanvas |
| 33 | + v-bind="gl" |
| 34 | + > |
| 35 | + <TresPerspectiveCamera |
| 36 | + :position="[5, 5, 5]" |
| 37 | + :look-at="[0, 0, 0]" |
| 38 | + /> |
| 39 | + <OrbitControls auto-rotate /> |
| 40 | + |
| 41 | + <TresMesh :position="[0, .5, 0]"> |
| 42 | + <TresBoxGeometry :args="[2, 2, 2]" /> |
| 43 | + <TresMeshPhysicalMaterial color="black" :roughness=".25" /> |
| 44 | + </TresMesh> |
| 45 | + |
| 46 | + <ContactShadows |
| 47 | + :opacity="1" |
| 48 | + :position-y="-.5" |
| 49 | + /> |
| 50 | + |
| 51 | + <Suspense> |
| 52 | + <Environment background :blur=".5" preset="snow" /> |
| 53 | + </Suspense> |
| 54 | + |
| 55 | + <Suspense> |
| 56 | + <EffectComposerPmndrs> |
| 57 | + <SepiaPmndrs :intensity="intensity.value" :blendFunction="Number(blendFunction.value)" /> |
| 58 | + </EffectComposerPmndrs> |
| 59 | + </Suspense> |
| 60 | + </TresCanvas> |
| 61 | +</template> |
0 commit comments