1、优化了模型粒子

2、调试模式 首页 增加了提示
This commit is contained in:
hawk86104 2024-03-12 09:43:34 +08:00
parent 0f9e344e81
commit 3969b06eaa
3 changed files with 20 additions and 10 deletions

17
.fes.js
View File

@ -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') },

View File

@ -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'

View File

@ -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()