comparison demos/shooter/scripts/common/baseobject.py @ 655:cdebc30c9c4a

* Made the dynamic widget test in the pychan_demo work/look a little better * Fixed a small bug in the shooter demo (thanks to TAbracadabra for pointing it out)
author prock@33b003aa-7bff-0310-803a-e67f0ece8222
date Thu, 21 Oct 2010 20:00:36 +0000
parents 291ba2946c73
children
comparison
equal deleted inserted replaced
654:5d6b1820b953 655:cdebc30c9c4a
64 64
65 if findInstance: 65 if findInstance:
66 self._instance = self._layer.getInstance(self._name) 66 self._instance = self._layer.getInstance(self._name)
67 self._instance.thisown = 0 67 self._instance.thisown = 0
68 else: 68 else:
69 self._instnace = None 69 self._instance = None
70 70
71 def start(self): 71 def start(self):
72 """ 72 """
73 You must execute this function for the object to be updated 73 You must execute this function for the object to be updated
74 """ 74 """