C# Class Layer, TiledMapLoader

An abstract class representing a map layer. One can derive from it to add custom content to the map.
Inheritance: MonoBehaviour
Show file Open project: kjellski/TiledMapLoader Class Usage Examples

Public Methods

Method Description
Layer ( TileSet, tileset, string data, int currentLayerID, int width, int height ) : System
renderColVertices ( ) : List
renderTriangles ( int start, int end ) : List
renderUv ( ) : List
renderVertices ( ) : List

Method Details

Layer() public method

public Layer ( TileSet, tileset, string data, int currentLayerID, int width, int height ) : System
tileset TileSet,
data string
currentLayerID int
width int
height int
return System

renderColVertices() public method

public renderColVertices ( ) : List
return List

renderTriangles() public method

public renderTriangles ( int start, int end ) : List
start int
end int
return List

renderUv() public method

public renderUv ( ) : List
return List

renderVertices() public method

public renderVertices ( ) : List
return List