Files
zeling_v2/Assets/_Game/Scripts/World/Map/MapGridConstants.cs
Joywayer 5cb6c2a19d 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
2026-05-25 14:25:19 +08:00

13 lines
396 B
C#
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.
namespace BaseGames.World.Map
{
/// <summary>
/// 地图格子渲染常量。
/// 统一管理像素/格比例,避免魔法数字分散在多个文件中。
/// </summary>
public static class MapGridConstants
{
/// <summary>全屏地图每格像素数MapPanel / MapRoomCellUI 使用)。</summary>
public const float FullMapCellPixels = 32f;
}
}