Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ With()

SpriteFrame Terraria.DataStructures.SpriteFrame.With ( byte columnToUse,
byte rowToUse )
inline

Definition at line 64 of file SpriteFrame.cs.

65 {
66 SpriteFrame result = this;
67 result.CurrentColumn = columnToUse;
68 result.CurrentRow = rowToUse;
69 return result;
70 }
SpriteFrame(byte columns, byte rows)