上一页 1 ··· 5 6 7 8 9 10 11 下一页
摘要: package.json 添加 脚本映射 "scripts": { "dev": "vite", "build": "vite build", "preview": "vite preview" }, 阅读全文
posted @ 2024-03-05 08:48 暖暖De幸福 阅读(86) 评论(0) 推荐(0) 编辑
摘要: 渲染阴影 由于渲染阴影需要耗费大量的计算资源,所以默认情况下 Three.js 中是不会渲染阴影的,为了渲染阴影效果,需要告诉渲染器需要阴影效果 renderer.shadowMap.enabled = true; 指定阴影的光源 spotLight.castShadow = true; //产生阴 阅读全文
posted @ 2024-03-04 19:03 暖暖De幸福 阅读(73) 评论(0) 推荐(0) 编辑
摘要: 说明 该配置按页面配置,无法全局配置 使用方法 引入uni-icons插件 插件地址:点击此处跳转到uni-icons 引入以后,会发现uni-modules中新增如下目录和文件: 仅需要那个 uniicons.ttf 文件,不引入插件、单独把那个文件下载到本地也是可以的。 复制uniicons.t 阅读全文
posted @ 2024-03-04 08:50 暖暖De幸福 阅读(180) 评论(0) 推荐(0) 编辑
摘要: 局部视图,也可称作 Solo 模式 按快捷键 / 进入,再按退出 阅读全文
posted @ 2024-03-02 20:10 暖暖De幸福 阅读(71) 评论(0) 推荐(0) 编辑
摘要: 快捷键 E 、S 可以挤出圆环平面 阅读全文
posted @ 2024-03-02 20:08 暖暖De幸福 阅读(122) 评论(0) 推荐(0) 编辑
摘要: 塌陷,即一个面坍缩为一个点 快捷键 :x 阅读全文
posted @ 2024-03-02 20:07 暖暖De幸福 阅读(181) 评论(0) 推荐(0) 编辑
摘要: var renderer = new THREE.WebGLRenderer({ antialias: true, //开启锯齿 alpha: true }); // 设置背景颜色 renderer.setClearColor(0x000000,0); //0是完全透明,1是不透明 // 黑色 re 阅读全文
posted @ 2024-03-02 16:59 暖暖De幸福 阅读(424) 评论(0) 推荐(0) 编辑
摘要: 设置淘宝镜像源 打开终端,输入以下命令来设置淘宝镜像源 npm config set registry https://registry.npm.taobao.org/ 查看镜像使用状态。输入以下命令来查看当前的镜像源是否已成功配置: npm config get registry 如果返回的地址是 阅读全文
posted @ 2024-03-02 16:25 暖暖De幸福 阅读(456) 评论(0) 推荐(0) 编辑
摘要: 管理员权限运行 power shell set-ExecutionPolicy RemoteSigned 选择 A。 然后重新使用cnpm install 阅读全文
posted @ 2024-03-02 16:21 暖暖De幸福 阅读(27) 评论(0) 推荐(0) 编辑
摘要: request to https://registry.npm.taobao.org/cnpm failed, reason: certificate has expired 方法1 // 1. 清空缓存 npm cache clean --force // 2. 关闭SSL验证 npm confi 阅读全文
posted @ 2024-03-02 16:15 暖暖De幸福 阅读(922) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 下一页