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