summaryrefslogtreecommitdiff
path: root/src/mapdata.py
diff options
context:
space:
mode:
authorColin Noga <Tempus@Spectrum-Song.local>2011-11-17 06:16:58 -0600
committerColin Noga <Tempus@Spectrum-Song.local>2011-11-17 06:16:58 -0600
commitf14806abe907d6e04a12c5e2990c1e10a34ed103 (patch)
tree41c8c74be8c27da2d164a7d630fce42a6b8f5fdd /src/mapdata.py
parent7bb952ac294991753b86a7075007070676baafb9 (diff)
downloadkoopatlas-f14806abe907d6e04a12c5e2990c1e10a34ed103.tar.gz
koopatlas-f14806abe907d6e04a12c5e2990c1e10a34ed103.zip
Doodads brought up to speed, at least in as good shape as objects, if not better
Diffstat (limited to '')
-rw-r--r--src/mapdata.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mapdata.py b/src/mapdata.py
index 53331c5..64a8f44 100644
--- a/src/mapdata.py
+++ b/src/mapdata.py
@@ -115,7 +115,8 @@ class KPDoodad(object):
def __init__(self):
self.position = (0,0)
self.angle = 0
- self.scale = (0,0)
+ self.scale = 1.0
+ self.index = 0
class KPDoodadLayer(KPLayer):