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:
66792ff
)
bulletml-runner: Construct bullets from the document.
author
Joe Wreschnig
<joe.wreschnig@gmail.com>
Thu, 22 Apr 2010 02:45:41 +0000
(19:45 -0700)
committer
Joe Wreschnig
<joe.wreschnig@gmail.com>
Thu, 22 Apr 2010 02:45:41 +0000
(19:45 -0700)
bulletml-runner
patch
|
blob
|
history
diff --git
a/bulletml-runner
b/bulletml-runner
index b98e9010c3ed4f9c8811871342e1fd191b900552..d2d9ce00ed3e410a766d4e798ba897ea79dfe423 100755
(executable)
--- a/
bulletml-runner
+++ b/
bulletml-runner
@@
-78,10
+78,8
@@
def main(argv):
elif event.key == pygame.K_RETURN:
newfile = True
elif event.key == pygame.K_s:
- actions = [act([], 0.5) for act in doc.actions]
- source = bulletml.Bullet(
- x=150, y=150, target=target,
- actions=actions, rank=0.5)
+ source = bulletml.Bullet.FromDocument(
+ doc, x=150, y=150, target=target, rank=0.5)
source.vanished = True
active.add(source)
target.x, target.y = pygame.mouse.get_pos()