Map Editor beautification
- show full name + version of the loaded mod in titlebar - added a help menu with useful links - added icons to to the menu with tooltips - added a toolbar to the editor, closes #2825
This commit is contained in:
@@ -386,7 +386,7 @@ namespace OpenRA.Editor
|
||||
var x = new int2(u / ChunkSize, v / ChunkSize);
|
||||
if (!Chunks.ContainsKey(x)) Chunks[x] = RenderChunk(u / ChunkSize, v / ChunkSize);
|
||||
|
||||
Bitmap bmp = Chunks[x];
|
||||
var bmp = Chunks[x];
|
||||
|
||||
float DrawX = TileSet.TileSize * (float)ChunkSize * (float)x.X * Zoom + Offset.X;
|
||||
float DrawY = TileSet.TileSize * (float)ChunkSize * (float)x.Y * Zoom + Offset.Y;
|
||||
|
||||
Reference in New Issue
Block a user