Class Image
- Namespace
- DotTiled
- Assembly
- DotTiled.dll
Represents an image that is used by a tileset.
public class Image
- Inheritance
-
Image
- Inherited Members
Properties
Format
The format of the image.
public Optional<ImageFormat> Format { get; set; }
Property Value
Height
The image height in pixels, used for tile index correction when the image changes.
public Optional<uint> Height { get; set; }
Property Value
Source
The reference to the image file.
public Optional<string> Source { get; set; }
Property Value
TransparentColor
Defines a specific color that is treated as transparent.
public Optional<Color> TransparentColor { get; set; }
Property Value
Width
The image width in pixels, used for tile index correction when the image changes.
public Optional<uint> Width { get; set; }