Add description to help text
This commit is contained in:
parent
345dd1651c
commit
6b158a1adf
2 changed files with 3 additions and 0 deletions
|
@ -1,6 +1,8 @@
|
||||||
SpritePacker {version}, by Starbeamrainbowlabs
|
SpritePacker {version}, by Starbeamrainbowlabs
|
||||||
Built at {build-date}
|
Built at {build-date}
|
||||||
|
|
||||||
|
An advanced sprite packing tool
|
||||||
|
|
||||||
Usage:
|
Usage:
|
||||||
[mono ]./SpritePacker.exe [flags] /path/to/output/file.png [filenames]
|
[mono ]./SpritePacker.exe [flags] /path/to/output/file.png [filenames]
|
||||||
|
|
||||||
|
|
|
@ -50,6 +50,7 @@ namespace SpritePacker
|
||||||
public int Right { get { return area.Right; } }
|
public int Right { get { return area.Right; } }
|
||||||
|
|
||||||
public int AreaSize { get { return area.Width * area.Height; } }
|
public int AreaSize { get { return area.Width * area.Height; } }
|
||||||
|
public int MaxSideLength { get { return Math.Max(area.Width, area.Height); } }
|
||||||
|
|
||||||
public Sprite(string inFilename)
|
public Sprite(string inFilename)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue