摘要: 最终决定用ue5做环境与渲染,放弃blender ue5也是用论文堆出来的产品,很难再找到类似竞品了 学!还差这些就能搭环境了!!!! ue5: 蓝图系统:材质&打光&特效,自动切镜 优化踩坑:动态加载 暂时不学C++ blender: 雕刻、材质进阶(脸型五官,材质生成) 风格化 假设 9成动画交 阅读全文
posted @ 2023-11-16 15:26 Nolca 阅读(67) 评论(0) 推荐(0) 编辑
摘要: 推荐课程 底层向 GAMES 101/202... + openGL迷你渲染器tinyRender 【双语】【TheCherno】游戏引擎 笔记 todo 阅读全文
posted @ 2024-11-23 08:51 Nolca 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 教程 9种dither算法与历史发展 最开始是如何生成bayer矩阵 wiki: bayer有序抖动 python生成任意规模bayer矩阵 知乎:dither启发的艺术效果,半调/柱形 taichi ndarray文档 CSDN dither算法 理解bayer矩阵 因为bayer矩阵要平铺,所以 阅读全文
posted @ 2024-11-16 23:06 Nolca 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 解释如下概念 入门对比 齐次vs非齐次 线性vs非线性 微分vs求导vs积分 方程组vs矩阵乘法 齐次线性方程组 永远存在零解 基础解系vs通解 存在非零解↔︎A不满秩 非齐次也适用: r(A) + η的数量 = n (x的列有多长) 非齐次线性方程组 Ax=b 的2个解互减,即 ξ₁-ξ₂ 是 A 阅读全文
posted @ 2024-11-16 09:30 Nolca 阅读(12) 评论(0) 推荐(0) 编辑
摘要: 博客:源码解读 TOS源码: https://github.com/cia-foundation/TempleOS 启动过程: https://minexew.github.io/2020/02/27/templeos-loader-part1.html 建设性看法:http://www.coder 阅读全文
posted @ 2024-11-13 16:03 Nolca 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 53端口冲突 解决:adguard使用别的端口,如54 sudo lsof -i :53 COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME dnsmasq 1664 lxc-dnsmasq 6u IPv4 16640 0t0 UDP DESKTOP 阅读全文
posted @ 2024-10-25 13:29 Nolca 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 今天在写python脚本,发现 I=[[0,0],[0,0]] a=I.copy() a[0][0]=1 print(a,I) 结果: [[1, 0], [0, 0]] [[1, 0], [0, 0]] 因为copy()拷贝得还不够深 解决方法 import copy import copy a = 阅读全文
posted @ 2024-10-23 22:56 Nolca 阅读(1) 评论(0) 推荐(0) 编辑
摘要: ~/.cargo/config.toml [source.crates-io] registry = "https://github.com/rust-lang/crates.io-index" replace-with = 'fast' [source.tuna] registry = "http 阅读全文
posted @ 2024-10-13 22:59 Nolca 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 使用tauri v2,跑前后端项目学习时,遇到这条报错: Unhandled Promise Rejection: NotAllowedError: The request is not allowed by the user agent or the platform in the current 阅读全文
posted @ 2024-10-13 22:12 Nolca 阅读(42) 评论(0) 推荐(0) 编辑
摘要: 注册菜单 点击事件 注册实例 设置默认值 将handle(手握实例的变量)赋值给一个变量 function menu_Func_click() { GM_setValue('Func', !GM_getValue('Func')); // 开关 GM_unregisterMenuCommand(me 阅读全文
posted @ 2024-10-08 14:30 Nolca 阅读(20) 评论(0) 推荐(0) 编辑
摘要: 没改动代码,但无法运行java项目 java: -source 1.5 中不支持……表达式/运算符 java: 错误: 不支持发行版本 5 解决:https://www.cnblogs.com/liu-han/p/16105953.html 文件→项目结构,SDK和项目/模块 语言级别的版本要一致 阅读全文
posted @ 2024-10-07 11:19 Nolca 阅读(1) 评论(0) 推荐(0) 编辑