mirror of
https://gitee.com/ice-gl/icegl-three-vue-tres.git
synced 2025-04-05 06:22:43 +08:00
更新了 three.quarks 效果的不同步 以及左边不对齐的bug
This commit is contained in:
parent
a0269c36c6
commit
26add14c4d
@ -4,12 +4,12 @@
|
||||
* @Autor: 地虎降天龙
|
||||
* @Date: 2024-06-18 14:32:19
|
||||
* @LastEditors: 地虎降天龙
|
||||
* @LastEditTime: 2024-06-18 16:01:41
|
||||
* @LastEditTime: 2024-11-27 10:16:09
|
||||
-->
|
||||
<template>
|
||||
<TresGroup>
|
||||
<primitive :object="emitters" />
|
||||
<primitive :object="batchSystem" />
|
||||
<primitive :object="batchSystem" :position="position" :scale="scale" :rotation="rotation" />
|
||||
</TresGroup>
|
||||
</template>
|
||||
<script lang="ts" setup>
|
||||
@ -21,15 +21,21 @@ import { watch } from 'vue'
|
||||
const props = withDefaults(
|
||||
defineProps<{
|
||||
color?: string
|
||||
position?: Array<number>
|
||||
scale?: Array<number> | number
|
||||
rotation?: Array<number>
|
||||
}>(),
|
||||
{
|
||||
color: '#00ffff',
|
||||
position: [0, 0, 0] as any,
|
||||
scale: 1,
|
||||
rotation: [0, 0, 0] as any,
|
||||
},
|
||||
)
|
||||
|
||||
const getPropsColor = (a) => {
|
||||
const getPropsColor = (a: any) => {
|
||||
const colorThree = new THREE.Color(props.color)
|
||||
const tv4color = new THREE.Vector4(colorThree.r, colorThree.g, colorThree.b, a)
|
||||
const tv4color = new THREE.Vector4(colorThree.r, colorThree.g, colorThree.b, a) as any
|
||||
const colorRange = new TQK.ConstantColor(tv4color)
|
||||
return colorRange
|
||||
}
|
||||
@ -53,7 +59,6 @@ loader.load('./plugins/floor/json/CartoonMagicZone.json', (obj) => {
|
||||
}
|
||||
})
|
||||
if (obj.type === 'ParticleEmitter') {
|
||||
//@ts-ignore
|
||||
batchSystem.addSystem(obj.system)
|
||||
}
|
||||
emitters.add(obj)
|
||||
@ -68,7 +73,7 @@ watch(
|
||||
() => [props.color],
|
||||
([color]) => {
|
||||
batchSystem.systemToBatchIndex.forEach((value, ps) => {
|
||||
(ps as any).startColor = getPropsColor((ps as any).startColor.color.w)
|
||||
;(ps as any).startColor = getPropsColor((ps as any).startColor.color.w)
|
||||
})
|
||||
},
|
||||
)
|
||||
|
@ -4,15 +4,25 @@
|
||||
* @Autor: 地虎降天龙
|
||||
* @Date: 2024-06-06 15:51:13
|
||||
* @LastEditors: 地虎降天龙
|
||||
* @LastEditTime: 2024-06-18 16:03:19
|
||||
* @LastEditTime: 2024-11-27 12:03:06
|
||||
-->
|
||||
<template>
|
||||
<TresCanvas clearColor="#201919" window-size>
|
||||
<TresPerspectiveCamera :position="[5, 5, 5]" :fov="45" :near="0.1" :far="10000" />
|
||||
<OrbitControls enableDamping />
|
||||
<Suspense>
|
||||
<cartoonMagic v-bind="configState" />
|
||||
</Suspense>
|
||||
<TresAmbientLight :intensity="2" />
|
||||
|
||||
<cartoonMagic v-bind="configState" />
|
||||
<cartoonMagic color="yellow" :scale="1.0" :position="[3, 0, 0]" />
|
||||
|
||||
<TresMesh :position="[3, 0, 0]">
|
||||
<TresSphereGeometry :args="[1, 32, 32]" />
|
||||
<TresMeshBasicMaterial color="yellow" />
|
||||
</TresMesh>
|
||||
<TresMesh :position="[0, 0, 0]">
|
||||
<TresSphereGeometry :args="[1, 32, 32]" />
|
||||
<TresMeshBasicMaterial color="white" />
|
||||
</TresMesh>
|
||||
|
||||
<Suspense>
|
||||
<reflectorDUDV :position="[0, -0.5, 0]" v-bind="reflectorState" />
|
||||
@ -30,8 +40,8 @@ import cartoonMagic from '../components/cartoonMagic.vue'
|
||||
|
||||
const reflectorState = reactive({
|
||||
reflectivity: 0.1,
|
||||
showGridHelper: false,
|
||||
scale: 2,
|
||||
showGridHelper: true,
|
||||
scale: 1,
|
||||
})
|
||||
const configState = reactive({
|
||||
color: '#ffffff',
|
||||
|
Loading…
x
Reference in New Issue
Block a user