mirror of
https://gitee.com/ice-gl/icegl-three-vue-tres.git
synced 2025-04-05 06:22:43 +08:00
1、优化了模型粒子
2、调试模式 首页 增加了提示
This commit is contained in:
parent
0f9e344e81
commit
3969b06eaa
17
.fes.js
17
.fes.js
@ -4,13 +4,15 @@
|
||||
* @Autor: 地虎降天龙
|
||||
* @Date: 2023-10-16 10:53:09
|
||||
* @LastEditors: 地虎降天龙
|
||||
* @LastEditTime: 2024-03-07 10:19:54
|
||||
* @LastEditTime: 2024-03-12 09:39:34
|
||||
*/
|
||||
// import { resolve } from 'path';
|
||||
import { join } from 'path';
|
||||
import { defineBuildConfig } from '@fesjs/fes'
|
||||
import { templateCompilerOptions } from '@tresjs/core'
|
||||
// eslint-disable-next-line import/no-unresolved
|
||||
import UnoCSS from 'unocss/vite'
|
||||
// eslint-disable-next-line import/no-extraneous-dependencies
|
||||
import glsl from 'vite-plugin-glsl'
|
||||
|
||||
export default defineBuildConfig({
|
||||
@ -43,9 +45,16 @@ export default defineBuildConfig({
|
||||
}),
|
||||
glsl()
|
||||
],
|
||||
server: {
|
||||
host: "0.0.0.0"
|
||||
},
|
||||
// server: {
|
||||
// host: "0.0.0.0",
|
||||
// proxy: {
|
||||
// '/cosv2': {
|
||||
// target: 'https://opensource-1314935952.cos.ap-nanjing.myqcloud.com',
|
||||
// changeOrigin: true,
|
||||
// rewrite: (path) => path.replace(/^\/cosv2/, '')
|
||||
// },
|
||||
// },
|
||||
// },
|
||||
},
|
||||
alias: { PLS: join(__dirname, './src/plugins') },
|
||||
// { find: 'pls', replacement: resolve(__dirname, './src/plugins') },
|
||||
|
@ -27,9 +27,10 @@
|
||||
|
||||
<TresGridHelper />
|
||||
</TresCanvas>
|
||||
<h1 class="text-center text-white w-full absolute"> 若需查看插件中心,请运行:npm pre.dev</h1>
|
||||
</template>
|
||||
|
||||
|
||||
|
||||
|
||||
<script setup lang="ts">
|
||||
import { SRGBColorSpace, BasicShadowMap, NoToneMapping } from 'three'
|
||||
import { reactive, ref, onMounted, shallowRef, watchEffect } from 'vue'
|
||||
|
@ -4,7 +4,7 @@
|
||||
* @Autor: 地虎降天龙
|
||||
* @Date: 2024-03-11 15:02:07
|
||||
* @LastEditors: 地虎降天龙
|
||||
* @LastEditTime: 2024-03-11 19:05:08
|
||||
* @LastEditTime: 2024-03-12 09:40:48
|
||||
-->
|
||||
<script setup lang="ts">
|
||||
import * as THREE from 'three'
|
||||
@ -68,11 +68,11 @@ guanyuGeometries.rotateX(Math.PI / 2)
|
||||
guanyuGeometries.translate(0, -0.9, 0)
|
||||
const guanyuTexture = makeTexture(guanyuGeometries)
|
||||
|
||||
const planeModel = (await useGLTF('https://opensource-1314935952.cos.ap-nanjing.myqcloud.com/model/industry4/plane/scene.gltf', { draco: true, decoderPath: './draco/' })).scene
|
||||
const planeGeometries = mergeGeometriesForMesh(planeModel.children[0].children[0].children[0].children[0])
|
||||
const planeModel = (await useGLTF('./plugins/industry4/model/modelDraco.glb', { draco: true, decoderPath: './draco/' })).scene
|
||||
const planeGeometries = mergeGeometriesForMesh(planeModel.children[0])
|
||||
planeGeometries.rotateX(-Math.PI / 2)
|
||||
planeGeometries.rotateY(Math.PI / 3)
|
||||
planeGeometries.translate(0.0, -0.9, 0)
|
||||
planeGeometries.translate(0.0, 0, 0)
|
||||
const planeTexture = makeTexture(planeGeometries)
|
||||
|
||||
const simMesh = makeSimMesh()
|
||||
|
Loading…
x
Reference in New Issue
Block a user