mirror of
https://gitee.com/ice-gl/icegl-three-vue-tres.git
synced 2025-04-05 06:22:43 +08:00
优化完成了 桌面陈列 场景
This commit is contained in:
parent
72c20aafc6
commit
dd36e8a679
Binary file not shown.
Before Width: | Height: | Size: 184 KiB After Width: | Height: | Size: 177 KiB |
@ -4,7 +4,7 @@
|
||||
* @Autor: 地虎降天龙
|
||||
* @Date: 2024-04-26 08:13:26
|
||||
* @LastEditors: 地虎降天龙
|
||||
* @LastEditTime: 2024-04-26 08:26:56
|
||||
* @LastEditTime: 2024-04-26 10:37:39
|
||||
-->
|
||||
<template>
|
||||
<Suspense>
|
||||
@ -26,14 +26,23 @@
|
||||
<Lightformer :intensity="0.5" :rotation-y="Math.PI / 2" :position="[-5, -1, -1]" :scale="[50, 2, 1]" />
|
||||
<Lightformer :intensity="0.5" :rotation-y="-Math.PI / 2" :position="[10, 1, 0]" :scale="[50, 2, 1]" />
|
||||
|
||||
<TresGroup ref="refgroup">
|
||||
<TresGroup ref="refgroup" :rotation-x="Math.PI / 2">
|
||||
<Lightformer form="ring" color="red" :rotation-y="Math.PI / 2" :intensity="5" :scale="[10, 10, 1]" :position="[-5, 2, -1]" />
|
||||
</TresGroup>
|
||||
</Environment>
|
||||
</Suspense>
|
||||
</template>
|
||||
<script setup lang="ts">
|
||||
import { ref } from 'vue'
|
||||
import { Environment, Lightformer } from 'PLS/basic'
|
||||
import { useRenderLoop } from '@tresjs/core'
|
||||
|
||||
const refgroup = ref(null)
|
||||
const { onLoop } = useRenderLoop()
|
||||
onLoop(({ delta }) => {
|
||||
if (refgroup.value) {
|
||||
refgroup.value.rotation.z += delta
|
||||
}
|
||||
})
|
||||
const lightList = [2, -2, 2, -4, 2, -5, 2, -9]
|
||||
</script>
|
||||
|
@ -4,12 +4,12 @@
|
||||
* @Autor: 地虎降天龙
|
||||
* @Date: 2024-01-16 09:39:49
|
||||
* @LastEditors: 地虎降天龙
|
||||
* @LastEditTime: 2024-04-26 10:24:02
|
||||
* @LastEditTime: 2024-04-26 11:24:12
|
||||
-->
|
||||
<script setup lang="ts">
|
||||
import * as THREE from 'three'
|
||||
import { useGLTF } from '@tresjs/cientos'
|
||||
import { Center, TransmissionMaterial } from 'PLS/basic'
|
||||
import { Center, TransmissionMaterial, Caustics } from 'PLS/basic'
|
||||
import { AccumulativeShadows } from 'PLS/projectionShadow'
|
||||
import { Pane } from 'tweakpane'
|
||||
import { reactive } from 'vue'
|
||||
@ -120,6 +120,61 @@ paneControl.addBinding(materialState, 'backsideThickness', {
|
||||
max: 4,
|
||||
step: 0.01,
|
||||
})
|
||||
|
||||
const causticsState = reactive({
|
||||
color: 'rgb(255,200, 200)',
|
||||
ior: 0.97,
|
||||
backsideIOR: 0.98,
|
||||
far: 30,
|
||||
worldRadius: 0.394,
|
||||
intensity: 0.02,
|
||||
causticsOnly: false,
|
||||
lightSource: { x: -0.05, y: 1, z: 1 },
|
||||
})
|
||||
const paneControl2 = new Pane({ title: '参数' })
|
||||
paneControl2.hidden = true
|
||||
paneControl2.addBinding(causticsState, 'color', {
|
||||
label: '颜色',
|
||||
})
|
||||
paneControl2.addBinding(causticsState, 'ior', {
|
||||
label: '折射系数',
|
||||
min: 0.6,
|
||||
max: 1.3,
|
||||
step: 0.01,
|
||||
})
|
||||
paneControl2.addBinding(causticsState, 'backsideIOR', {
|
||||
label: '折射系数2',
|
||||
min: 0.6,
|
||||
max: 1.3,
|
||||
step: 0.01,
|
||||
})
|
||||
paneControl2.addBinding(causticsState, 'far', {
|
||||
label: '可视距离',
|
||||
min: 0,
|
||||
max: 30,
|
||||
step: 1,
|
||||
})
|
||||
paneControl2.addBinding(causticsState, 'worldRadius', {
|
||||
label: '材质大小',
|
||||
min: 0.001,
|
||||
max: 0.5,
|
||||
step: 0.001,
|
||||
})
|
||||
paneControl2.addBinding(causticsState, 'intensity', {
|
||||
label: '强度',
|
||||
min: 0,
|
||||
max: 1,
|
||||
step: 0.01,
|
||||
})
|
||||
paneControl2.addBinding(causticsState, 'causticsOnly', {
|
||||
label: '只显示投射',
|
||||
})
|
||||
paneControl2.addBinding(causticsState, 'lightSource', {
|
||||
label: '光源位置',
|
||||
x: { min: -1, max: 1 },
|
||||
y: { min: -1, max: 1 },
|
||||
z: { min: -1, max: 1 },
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
@ -137,9 +192,11 @@ paneControl.addBinding(materialState, 'backsideThickness', {
|
||||
|
||||
<TresMesh castShadow :geometry="nodes.fork.geometry" :material="materials.ForkAndKnivesSet001_1K" material-color="#999" />
|
||||
|
||||
<TresMesh castShadow receiveShadow :geometry="nodes.glass.geometry">
|
||||
<TransmissionMaterial v-bind="materialState" />
|
||||
</TresMesh>
|
||||
<Caustics v-bind="causticsState">
|
||||
<TresMesh castShadow receiveShadow :geometry="nodes.glass.geometry">
|
||||
<TransmissionMaterial v-bind="materialState" />
|
||||
</TresMesh>
|
||||
</Caustics>
|
||||
|
||||
<TresMesh :geometry="nodes.glass_back.geometry" :material="innerMaterial" :scale="[0.95, 1, 0.95]" />
|
||||
<TresMesh :geometry="nodes.glass_inner.geometry" :material="innerMaterial" />
|
||||
|
Loading…
x
Reference in New Issue
Block a user