Post #1 · Posted at 2015-08-08 07:26:53am 10.1 years ago
![]() | |
---|---|
![]() |
Member |
16 Posts | |
Not Set | |
Reg. 2014-08-30 | |
Hey guys, I'm creating a theme for a local arcade near me, i wanted to animate an object.
I need to move it diagonally. Using this code:
<Layer
File="top"
InitCommand="x,SCREEN_CENTER_X;y,SCREEN_CENTER_Y;"
OnCommand="accelerate,2;addy,-300;accelerate,2;addx,-300"
OffCommand="%TitleMenuOut"
/>
It just moves it up, and then horizontally.
Is there a command that moves object diagonally? if not, is there a way to play addy and addx at the same time?
Thanks,
Gabrimax
I need to move it diagonally. Using this code:
<Layer
File="top"
InitCommand="x,SCREEN_CENTER_X;y,SCREEN_CENTER_Y;"
OnCommand="accelerate,2;addy,-300;accelerate,2;addx,-300"
OffCommand="%TitleMenuOut"
/>
It just moves it up, and then horizontally.
Is there a command that moves object diagonally? if not, is there a way to play addy and addx at the same time?
Thanks,
Gabrimax
Post #2 · Posted at 2015-08-09 01:36:17pm 10.1 years ago
![]() | |
---|---|
![]() |
Member |
335 Posts | |
![]() | |
Reg. 2011-03-09 | |
Delete the second "accelerate,2". Because you have two copies of that tween setting, StepMania breaks it into two separate tweens. If you don't have it there they will be in the same tween and happen simultaneously.