Files
obsidian-notes/3Resources/游戏开发/性能优化/性能优化-方向.md
zzzisfunnyboy f3e69f6413
2025-10-09 23:09:56 +08:00

19 lines
514 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 前期需要
# 需要关注的数据
- gpu时间
- cpu时间
- 多边形数量
- 顶点数量
- dc
- 内存使用量
# 测量方法
- 添加显眼的耗时Debug以方便团队每个人知道何时超时
- 预估性能瓶颈
- 确立目标平台目标平台的性能cpu gpu 内存大小
- 用一个空场景,添加顶点网格,以及各种效果,最终得出帧时间
- 在关卡中性能最差的位置放置摄像机,用于测量
- 绘制宏,以便于每次测量结果一致
# 后期需要