SquidPanel |
SquidLayers.getBackgroundLayer() |
|
SquidPanel |
SquidLayers.getForegroundLayer() |
|
SquidPanel |
SquidLayers.getLayer(int layer) |
Gets a SquidPanel from this SquidLayers and returns a direct reference.
|
SquidPanel |
SquidPanel.setFromSnapshot(String snapshot) |
Given a "snapshot" from getSnapshot(int, int, int, int) , this assigns the chars and colors in this
SquidPanel from 0,0 (inclusive) up to the dimensions stored in the snapshot to match the snapshot's data.
|
SquidPanel |
SquidPanel.setFromSnapshot(StringBuilder snapshot) |
Given a "snapshot" from getSnapshot(int, int, int, int) , this assigns the chars and colors in this
SquidPanel from 0,0 (inclusive) up to the dimensions stored in the snapshot to match the snapshot's data.
|
SquidPanel |
SquidPanel.setFromSnapshot(StringBuilder snapshot,
int putX,
int putY) |
Given a "snapshot" from getSnapshot(int, int, int, int) , this assigns the chars and colors in this
SquidPanel from the position given by putX,putY (inclusive) up to the dimensions stored in the snapshot
(considering putX and putY as offsets) so they have the values stored in the snapshot.
|
SquidPanel |
SquidPanel.setFromSnapshot(StringBuilder snapshot,
int putX,
int putY,
int limitWidth,
int limitHeight) |
Given a "snapshot" from getSnapshot(int, int, int, int) , this assigns the chars and colors in this
SquidPanel from the position given by putX,putY (inclusive) to putX+limitWidth,putY+limitHeight (exclusive) so
they have the values stored in the snapshot.
|
SquidPanel |
SquidPanel.setFromSnapshot(String snapshot,
int putX,
int putY) |
Given a "snapshot" from getSnapshot(int, int, int, int) , this assigns the chars and colors in this
SquidPanel from the position given by putX,putY (inclusive) up to the dimensions stored in the snapshot
(considering putX and putY as offsets) so they have the values stored in the snapshot.
|
SquidPanel |
SquidPanel.setFromSnapshot(String snapshot,
int putX,
int putY,
int limitWidth,
int limitHeight) |
Given a "snapshot" from getSnapshot(int, int, int, int) , this assigns the chars and colors in this
SquidPanel from the position given by putX,putY (inclusive) to putX+limitWidth,putY+limitHeight (exclusive) so
they have the values stored in the snapshot.
|
SquidPanel |
SquidPanel.setTextSize(float wide,
float high) |
Sets the size of the text in this SquidPanel (but not the size of the cells) to the given width and height in
pixels (which may be stretched by viewports later on, if your program uses them).
|