Pass along the priorities and other business when trimming an object tile

set; also changed some things to be bytes since they are bytes.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@2231 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2003-02-04 02:59:47 +00:00
parent d00619fe4d
commit f2f8611028
4 changed files with 178 additions and 7 deletions
@@ -1,5 +1,5 @@
//
// $Id: TileManager.java,v 1.27 2003/01/13 22:49:46 mdb Exp $
// $Id: TileManager.java,v 1.28 2003/02/04 02:59:47 mdb Exp $
package com.threerings.media.tile;
@@ -199,6 +199,23 @@ public class TileManager
return set.getTile(tileIndex);
}
/**
* Returns the {@link Tile} object from the specified tileset at the
* specified index with the specified colorizations applied to it.
*
* @param tileSetId the tileset id.
* @param tileIndex the index of the tile to be retrieved.
* @param zations colorizations to be applied to the tile image.
*
* @return the tile object.
*/
public Tile getTile (int tileSetId, int tileIndex, Colorization[] zations)
throws NoSuchTileSetException, NoSuchTileException
{
TileSet set = getTileSet(tileSetId);
return set.getTile(tileIndex);
}
/** The entity through which we decode and cache images. */
protected ImageManager _imgr;