improved field modification functions added to texture atlas data and ninepatch data classes.
This commit is contained in:
@@ -20,6 +20,24 @@ namespace RecrownedAthenaeum.Pipeline.TextureAtlas
|
||||
public string name;
|
||||
public Rectangle location;
|
||||
public NinePatchData ninePatchData;
|
||||
|
||||
public void SetPosition(int x, int y)
|
||||
{
|
||||
location.X = x;
|
||||
location.Y = y;
|
||||
}
|
||||
|
||||
public void SetSize(int width, int height)
|
||||
{
|
||||
location.Width = width;
|
||||
location.Height = height;
|
||||
}
|
||||
|
||||
public void SetBounds(int x, int y, int width, int height)
|
||||
{
|
||||
SetPosition(x, y);
|
||||
SetSize(width, height);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user