研发阶段检查清单
综合/最新
Godot游戏检查清单、其他检查清单
App
Game
Godot原型阶段: 主用 Godot CSG 制作基本轮廓,想平滑些可启用 autosmooth。
Web
JS:
try catch 无法捕获 Promise 的异步异常,故应换用 Promise.try(callback).then(r=> console.log(r)).catch(e=> console.log(e)).finally(() => console.log("over."));
中断控制 - const ac = new AbortController(); var tID=setTimeout(handle, 200, ac.signal); ac.abort() 比 clearTimeout(tID) 更暴力。
音频 - [桌面版Chrome和Firefox会自动补全?/首帧包含封包metadata] MediaRecorder API 录制的 *.webm 音频文件,能播放但无时长(EBML Duration)信息,应进行补全: ffmpeg -i input.webm -c copy output.webm