Mercurial > touhou
diff pytouhou/formats/ecl.py @ 76:f305c0e406d6
Handle all move_to_* ECL instructions.
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> |
---|---|
date | Tue, 30 Aug 2011 17:12:08 -0700 |
parents | b3bd421bb895 |
children | 6fa6d74a049a |
line wrap: on
line diff
--- a/pytouhou/formats/ecl.py +++ b/pytouhou/formats/ecl.py @@ -62,9 +62,9 @@ class ECL(object): 50: ('ff', 'set_random_angle_ex'), 51: ('ff', 'set_speed_towards_player'), 52: ('iff', None), - 56: ('iffi', None), - 57: ('ifff', 'move_to'), - 59: ('iffi', 'move_to2'), + 56: ('ifff', 'move_to_linear'), + 57: ('ifff', 'move_to_decel'), + 59: ('iffi', 'move_to_accel'), 61: ('i', 'stop_in'), 63: ('i', 'stop_in_accel'), 65: ('ffff', 'set_screen_box'),