我有一个名为箭头的演员,我想重复一个序列动作。
此箭头指向一个演员,如果单击该箭头,箭头应淡出。
这是我的代码:
Action moving = Actions.sequence(
(Actions.moveTo(arrow.getX(), arrow.getY() - 35, 1)),
(Actions.moveTo(arrow.getX(), arrow.getY(), 1)));
arrow.addAction(moving);
actor.addListener(new ClickListener() {
@Override
public void clicked(InputEvent event, float x, float y) {
arrow.addAction(Actions.fadeOut(1));
}
});
代码工作正常,但我想重复'移动'动作单击动画演员。
我在这个问题Cannot loop an action. libGDX中读到了关于RepeatAction但是我不知道如何申请
答案 0 :(得分:1)
在这种情况下,您可以使用RepeatAction,Actions.forever()
:
final Action moving = Actions.forever(Actions.sequence(
(Actions.moveTo(arrow.getX(), arrow.getY() - 35, 1)),
(Actions.moveTo(arrow.getX(), arrow.getY(), 1))));
arrow.addAction(moving);
actor.addListener(new ClickListener() {
@Override
public void clicked(InputEvent event, float x, float y) {
// you can remove moving action here
arrow.removeAction(moving);
arrow.addAction(Actions.fadeOut(1f));
}
});
如果您希望在淡出后从arrow
删除Stage
,则可以使用RunnableAction
:
arrow.addAction(Actions.sequence(
Actions.fadeOut(1f), Actions.run(new Runnable() {
@Override
public void run() {
arrow.remove();
}
}))
);