X-Git-Url: https://git.yukkurigames.com/?p=python-bulletml.git;a=blobdiff_plain;f=bulletml-runner;fp=bulletml-runner;h=9136f2133ff7090cf09800970df47374ae4c7e13;hp=8bfd338c3d2f7fda12a78d5fb71a9de39f2612f2;hb=405e333fe99b3625b0d89565de4e83984b462a3e;hpb=5942c31cd998d1575cbc2d16f3103c676852572d diff --git a/bulletml-runner b/bulletml-runner index 8bfd338..9136f21 100755 --- a/bulletml-runner +++ b/bulletml-runner @@ -37,7 +37,7 @@ def main(argv): while True: filename = argv[file_idx % len(argv)] doc = bulletml.BulletML.FromDocument(open(filename, "rU")) - actions = [act([], 0.5) for act in doc.top] + actions = [act([], 0.5) for act in doc.actions] source = bulletml.Bullet( x=150, y=150, target=target, actions=actions, rank=0.5) @@ -72,7 +72,7 @@ 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.top] + actions = [act([], 0.5) for act in doc.actions] source = bulletml.Bullet( x=150, y=150, target=target, actions=actions, rank=0.5)