-
Methods in squidpony.squidgrid.gui.gdx that return ImageSquidPanel
Modifier and Type |
Method |
Description |
ImageSquidPanel |
ImageSquidPanel.setFromSnapshot(String snapshot) |
Given a "snapshot" from getSnapshot(int, int, int, int) , this assigns the chars and colors in this
ImageSquidPanel from 0,0 (inclusive) up to the dimensions stored in the snapshot to match the snapshot's data.
|
ImageSquidPanel |
ImageSquidPanel.setFromSnapshot(StringBuilder snapshot) |
Given a "snapshot" from getSnapshot(int, int, int, int) , this assigns the chars and colors in this
ImageSquidPanel from 0,0 (inclusive) up to the dimensions stored in the snapshot to match the snapshot's data.
|
ImageSquidPanel |
ImageSquidPanel.setFromSnapshot(StringBuilder snapshot,
int putX,
int putY) |
Given a "snapshot" from getSnapshot(int, int, int, int) , this assigns the chars and colors in this
ImageSquidPanel 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.
|
ImageSquidPanel |
ImageSquidPanel.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
ImageSquidPanel from the position given by putX,putY (inclusive) to putX+limitWidth,putY+limitHeight (exclusive)
so they have the values stored in the snapshot.
|
ImageSquidPanel |
ImageSquidPanel.setFromSnapshot(String snapshot,
int putX,
int putY) |
Given a "snapshot" from getSnapshot(int, int, int, int) , this assigns the chars and colors in this
ImageSquidPanel 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.
|
ImageSquidPanel |
ImageSquidPanel.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
ImageSquidPanel from the position given by putX,putY (inclusive) to putX+limitWidth,putY+limitHeight (exclusive)
so they have the values stored in the snapshot.
|