Class SpriteIndex.IconInfo

Object
IconInfo
Enclosing class:
SpriteIndex

public static class SpriteIndex.IconInfo extends Object
Wrapper for parsing the properties of an individual sprite index entry (JSONObject) for a single icon. For example:
 
 {
  "width": 32,
  "height": 32,
  "x": 0,
  "y": 0,
  "pixelRatio": 1
 }
 
 
See Also:
  • Constructor Details

    • IconInfo

      public IconInfo(String iconName, JSONObject json)
      Parameters:
      iconName - The name of this sprite icon (used for error messages)
      json - The sprite index entry for this icon, as a JSONObject
  • Method Details

    • getWidth

      public int getWidth()
    • getHeight

      public int getHeight()
    • getX

      public int getX()
    • getY

      public int getY()
    • getPixelRatio

      public int getPixelRatio()