Class ImageLayer
- Namespace
- DotTiled
- Assembly
- DotTiled.dll
Represents an image layer in a map.
public class ImageLayer : BaseLayer, IHasProperties
- Inheritance
-
ImageLayer
- Implements
- Inherited Members
Properties
Image
The image to be drawn by this image layer.
public Optional<Image> Image { get; set; }
Property Value
RepeatX
Whether the image drawn by this layer is repeated along the X axis.
public Optional<bool> RepeatX { get; set; }
Property Value
RepeatY
Whether the image drawn by this layer is repeated along the Y axis.
public Optional<bool> RepeatY { get; set; }
Property Value
X
The X position of the image layer in pixels.
public uint X { get; set; }
Property Value
Y
The Y position of the image layer in pixels.
public Optional<uint> Y { get; set; }