Uses of Class
squidpony.squidgrid.gui.gdx.SparseTextMap
-
Uses of SparseTextMap in squidpony.squidgrid.gui.gdx
Fields in squidpony.squidgrid.gui.gdx with type parameters of type SparseTextMap Modifier and Type Field Description ArrayList<SparseTextMap>
SparseLayers. layers
A list of SparseTextMap objects, with each representing a foreground layer.Methods in squidpony.squidgrid.gui.gdx that return SparseTextMap Modifier and Type Method Description SparseTextMap
SparseLayers. addLayer()
Adds a layer as a SparseTextMap to this SparseLayers and returns the one just added.SparseTextMap
SparseLayers. addLayer(int association)
Adds a layer as a SparseTextMap to this SparseLayers and returns the one just added, or returns an existing layer if one is already associated with the given number.SparseTextMap
SparseLayers. getLayer(int layer)
Gets the layer, as a SparseTextMap, that is associated with the given int.Methods in squidpony.squidgrid.gui.gdx with parameters of type SparseTextMap Modifier and Type Method Description int
SparseLayers. findLayer(SparseTextMap layerMap)
Finds the layer number associated with layerMap, or -1 if the given SparseTextMap is not in this SparseLayers.void
SparseTextMap. putAll(SparseTextMap map)
void
SparseLayers. setLayer(int layerNumber, SparseTextMap contents)
Sets the SparseTextMap associated with the given layerNumber to the given contents.Constructors in squidpony.squidgrid.gui.gdx with parameters of type SparseTextMap Constructor Description CharValues(SparseTextMap map)
Entries(SparseTextMap map)
FloatValues(SparseTextMap map)
Keys(SparseTextMap map)
SparseTextMap(SparseTextMap map)
Creates a new map identical to the specified map.