Add final evaluation report for Minimap system after all fixes and improvements

- Summarized the evolution of scores across five review rounds
- Detailed the status of each evaluation dimension post-fixes
- Highlighted remaining issues and recommended future work for further enhancements
- Compared current system against industry benchmarks
This commit is contained in:
2026-05-25 14:25:19 +08:00
parent a1f9122153
commit 5cb6c2a19d
64 changed files with 2358 additions and 32937 deletions

View File

@@ -0,0 +1,12 @@
namespace BaseGames.World.Map
{
/// <summary>
/// 地图格子渲染常量。
/// 统一管理像素/格比例,避免魔法数字分散在多个文件中。
/// </summary>
public static class MapGridConstants
{
/// <summary>全屏地图每格像素数MapPanel / MapRoomCellUI 使用)。</summary>
public const float FullMapCellPixels = 32f;
}
}