The tragic end of ScreenTilePath

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1534 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2002-06-22 01:00:32 +00:00
parent d597e91e44
commit c467da448a
2 changed files with 1 additions and 95 deletions
@@ -1,5 +1,5 @@
//
// $Id: IsoSceneView.java,v 1.113 2002/06/22 00:45:18 ray Exp $
// $Id: IsoSceneView.java,v 1.114 2002/06/22 01:00:32 ray Exp $
package com.threerings.miso.scene;
@@ -456,18 +456,6 @@ public class IsoSceneView implements SceneView
}
}
/**
* Get a path between the two points (in screen coordinates)
* that will update a MisoCharacterSprite as it walks the path.
*/
public Path getScreenTilePath (Point start, Point dest, int direction)
{
ScreenTilePath path = new ScreenTilePath(_model);
path.addNode(start.x, start.y, 0); // first direction matters not
path.addNode(dest.x, dest.y, direction);
return path;
}
// documentation inherited
public Path getPath (MisoCharacterSprite sprite, int x, int y)
{