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:
Michael Bayne
2001-11-29 23:35:37 +00:00
parent 2ff427128e
commit 7ce8846420
@@ -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;
@@ -235,6 +235,11 @@ public class IsoSceneView implements SceneView
if ((tile = fringe.getTile(xx, yy)) != null) {
tile.paint(gfx, _polys[xx][yy]);
}
// if we're showing coordinates, outline the tiles as well
if (_model.showCoords) {
gfx.draw(_polys[xx][yy]);
}
}
}
}