If we're showing coordinates, also outline the tiles.
git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@714 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
//
|
//
|
||||||
// $Id: IsoSceneView.java,v 1.74 2001/11/29 23:08:27 mdb Exp $
|
// $Id: IsoSceneView.java,v 1.75 2001/11/29 23:35:37 mdb Exp $
|
||||||
|
|
||||||
package com.threerings.miso.scene;
|
package com.threerings.miso.scene;
|
||||||
|
|
||||||
@@ -235,6 +235,11 @@ public class IsoSceneView implements SceneView
|
|||||||
if ((tile = fringe.getTile(xx, yy)) != null) {
|
if ((tile = fringe.getTile(xx, yy)) != null) {
|
||||||
tile.paint(gfx, _polys[xx][yy]);
|
tile.paint(gfx, _polys[xx][yy]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// if we're showing coordinates, outline the tiles as well
|
||||||
|
if (_model.showCoords) {
|
||||||
|
gfx.draw(_polys[xx][yy]);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user