mirror of
https://github.com/OMGeeky/pytiled_parser.git
synced 2026-02-23 15:49:52 +01:00
stub(layer.Layer): the tiled docs need work
This commit is contained in:
@@ -35,15 +35,14 @@ class Layer:
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
name: str
|
name: str
|
||||||
|
opacity: float
|
||||||
|
visible: bool
|
||||||
|
|
||||||
id: Optional[int] = None
|
id: Optional[int] = None
|
||||||
width: Optional[int] = 0
|
size: Optional[Size] = None
|
||||||
height: Optional[int] = 0
|
|
||||||
offset: Optional[OrderedPair] = None
|
offset: Optional[OrderedPair] = None
|
||||||
opacity: Optional[float] = 1
|
|
||||||
properties: Optional[properties_.Properties] = None
|
properties: Optional[properties_.Properties] = None
|
||||||
start: Optional[OrderedPair] = None
|
coordinates: Optional[OrderedPair] = None
|
||||||
visible: Optional[bool] = True
|
|
||||||
|
|
||||||
|
|
||||||
TileLayerGrid = List[List[int]]
|
TileLayerGrid = List[List[int]]
|
||||||
|
|||||||
Reference in New Issue
Block a user