摘要: 1.安装gltf-pipeline // npm安装 npm install -g gltf-pipeline // yarn安装 yarn global add gltf-pipeline 2.执行压缩命令 gltf-pipeline -i tvbg.glb -o tvbg1.glb -d 阅读全文
posted @ 2024-11-26 17:15 那知归不归 阅读(111) 评论(0) 推荐(0) 编辑
摘要: 注意: 1.druid不能boot-starter方式引入 2.snakeyaml需要1.33 ('void org.yaml.snakeyaml.LoaderOptions.setCodePointLimit(int)') #30318 3.spring.datasource.driverClas 阅读全文
posted @ 2024-11-12 15:43 那知归不归 阅读(267) 评论(0) 推荐(0) 编辑
摘要: import com.alibaba.druid.pool.DruidDataSource; import org.quartz.SchedulerException; import org.quartz.utils.ConnectionProvider; import java.sql.Conne 阅读全文
posted @ 2024-11-12 14:35 那知归不归 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 环境 springboot+mybatis-plus+driud 注:druid引入方式请不要使用boot-starter方式 <dependency> <groupId>org.apache.shardingsphere</groupId> <artifactId>shardingsphere-j 阅读全文
posted @ 2024-11-11 17:51 那知归不归 阅读(416) 评论(0) 推荐(0) 编辑
摘要: 微信官方demo中的removeBlack效果不是很好,匹配度太低,我们直接渲染透明视频 第一步类似 新建 effect-bgTransparent.ts const xrFrameSystem = wx.getXrFrameSystem(); function createVideoTsbsEff 阅读全文
posted @ 2024-11-05 14:32 那知归不归 阅读(177) 评论(0) 推荐(0) 编辑
摘要: 去除黑色背景主要依赖于effect="removeBlack",其中removeBlack为官方demo写的规则,代码如下 const xrFrameSystem = wx.getXrFrameSystem(); xrFrameSystem.registerEffect('removeBlack', 阅读全文
posted @ 2024-11-05 14:08 那知归不归 阅读(152) 评论(0) 推荐(0) 编辑
摘要: 把uniapp从Vue2版本选择到Vue3版本编译开发 改用到Vue3使用: var jweixin = require('jweixin-module') 会编译报错:require is not defined,没有require模块. 改成import的话,由于jweixin-module不支 阅读全文
posted @ 2024-08-07 15:08 那知归不归 阅读(1670) 评论(0) 推荐(0) 编辑
摘要: 从gitee拉取项目出现问题:unable to access 'https://gitee.com/XXX/XXX.git/': Failed to connect to 127.0.0.1 port 解决方法: 打开git Bash 端,输入以下命令: git config --global - 阅读全文
posted @ 2024-08-02 15:48 那知归不归 阅读(142) 评论(0) 推荐(0) 编辑
摘要: 1、修改注册表,位置如下: HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/Windows NT/CurrentVersion/Windows 2、设置 1、GDIProcessHandleQuota此项设置GDI句柄数量,默认值为2710(16进制)/10000(10进 阅读全文
posted @ 2024-08-01 22:26 那知归不归 阅读(442) 评论(0) 推荐(0) 编辑
摘要: 在做性能测试测试时候,如果被测试的系统页面很简单,并且性能很好,这样会导致压力机得tcp链接数不够而导致如下错误: HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\tcpip\Parameters\TcpTimedWaitDelay to 3 阅读全文
posted @ 2024-08-01 22:11 那知归不归 阅读(907) 评论(0) 推荐(0) 编辑