projects
/
python-bulletml.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
62705a2
)
Bullet.step: Need to re-check finished in a second action iteration in case an action...
author
Joe Wreschnig
<joe.wreschnig@gmail.com>
Sat, 24 Apr 2010 08:55:18 +0000
(
01:55
-0700)
committer
Joe Wreschnig
<joe.wreschnig@gmail.com>
Sat, 24 Apr 2010 08:55:18 +0000
(
01:55
-0700)
bulletml/impl.py
patch
|
blob
|
history
diff --git
a/bulletml/impl.py
b/bulletml/impl.py
index a2e8decebd9f970dab01ee170e0e013bf1ee7972..0c40f1ebd2596752ab10861f9042cdb6c82cfd31 100644
(file)
--- a/
bulletml/impl.py
+++ b/
bulletml/impl.py
@@
-223,6
+223,9
@@
class Bullet(object):
for action in self.actions:
action.step(self, created)
finished = finished and action.finished
+ if finished:
+ for action in self.actions:
+ finished = finished and action.finished
self.finished = finished
speed = self.speed