TheExperience.vue 683 B

1234567891011121314151617181920
  1. <script setup lang="ts">
  2. import ThePortal from './ThePortal.vue'
  3. import { OrbitControls } from '@tresjs/cientos'
  4. import TheFireFlies from './TheFireFlies.vue'
  5. </script>
  6. <template>
  7. <Suspense>
  8. <TresCanvas clear-color="#201919" shadows alpha window-size power-preference="high-performance">
  9. <OrbitControls />
  10. <TresPerspectiveCamera :position="[5, 5, 5]" :fov="45" :aspect="1" :near="0.1" :far="1000" />
  11. <TresScene>
  12. <TresFog :args="['#201919', 0.1, 75]" />
  13. <ThePortal />
  14. <TheFireFlies />
  15. <TresAmbientLight :position="[10, 10, 10]" :intensity="1.5" color="#00ff00" />
  16. </TresScene>
  17. </TresCanvas>
  18. </Suspense>
  19. </template>