Files
MonoGame.Extended/Source/MonoGame.Extended.Tiled/TiledMapLayerType.cs
T
stefanrbk 1cf24d01ae Added Rough Group Layer Support
Added the ability to load files with groups. Rendering system still doesn't understand layer groups yet, so this allows groups to be initially loaded, but the sub layers of the group are extracted to the layer root, things like offsets for the group are applied directly to the sub layers, and the groups themselves are removed.
2018-06-08 14:53:57 -05:00

10 lines
182 B
C#

namespace MonoGame.Extended.Tiled
{
public enum TiledMapLayerType : byte
{
ImageLayer = 0,
TileLayer = 1,
ObjectLayer = 2,
GroupLayer = 3
}
}