android游戏开发框架libgdx的使用(六)--演员和演出

本文介绍LibGDX中Action类的使用方法,包括控制Action与表现Action两大类,并通过实例展示如何利用MoveTo、FadeIn等Action实现角色的移动、闪烁等动画效果。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

上一篇说到UI,然后之前说到舞台,现在我们可以很轻松的构建一出戏了。

因为actor类在绘制是以x,y值为基准,所以我们可以通过控制x,y值变化演员的位置,但是演员的其他效果需要配合Action类进行操作。

Action类是一个抽象类,所有的具体实现都在com.badlogic.gdx.scenes.scene2d.actions包中。

actions
图片分享:

而包中的类依功能而言可以分为两类:

  1. 控制Action
  2. 表现Action

控制Action没有直接表现效果,它操作的对象是表现Action。

比如Delay。

表现Action就是直接的表现效果,继承自AnimationAction,操作对象是Actor。

比如MoveTo。

现在挨着说吧:

控制类:

?
Delay $ (Action action, float duration)

  

延迟duration秒执行action。

?
Forever $ (Action action)

  

一直执行action。

?
Parallel $ (Action... actions)

  

并行(同时)执行actions。

?
Repeat $ (Action action, int times)

  

重复action times次。

?
Sequence $ (Action... actions)

  

按顺序执行actions。

Remove $ ()

删除所有Action。

表现类:

?
FadeIn $ (float duration)
FadeOut $ (float duration)

  

淡入淡出效果

?
FadeTo $ (float alpha, float duration)

  

duration秒改变至alpha。

?
MoveTo $ (float x, float y, float duration)
MoveBy $ (float x, float y, float duration)

  

用duration移动到x,y处。

?
RotateBy $ (float rotation, float duration)
RotateTo $ (float rotation, float duration)

  

用duration秒旋转rotation度。

ScaleTo $ (float scaleX, float scaleY, float duration)

缩放x到scaleX,y到scaleY,用时duration秒。

一个个写例子太麻烦了,而且实际运用中也多是多个组合运用,下面来看一个综合性的示例:

我们的主角是star

通过action的组合实现闪烁,飞动,旋转等效果。

代码如下:

?
package com.cnblogs.htynkn.listener;
import com.badlogic.gdx.ApplicationListener;
import com.badlogic.gdx.Gdx;
import com.badlogic.gdx.graphics.GL10;
import com.badlogic.gdx.graphics.Texture;
import com.badlogic.gdx.graphics.Texture.TextureFilter;
import com.badlogic.gdx.math.MathUtils;
import com.badlogic.gdx.scenes.scene2d.Action;
import com.badlogic.gdx.scenes.scene2d.Stage;
import com.badlogic.gdx.scenes.scene2d.actions.FadeIn;
import com.badlogic.gdx.scenes.scene2d.actions.FadeOut;
import com.badlogic.gdx.scenes.scene2d.actions.MoveBy;
import com.badlogic.gdx.scenes.scene2d.actions.MoveTo;
import com.badlogic.gdx.scenes.scene2d.actions.Parallel;
import com.badlogic.gdx.scenes.scene2d.actions.Repeat;
import com.badlogic.gdx.scenes.scene2d.actions.RotateTo;
import com.badlogic.gdx.scenes.scene2d.actions.Sequence;
import com.badlogic.gdx.scenes.scene2d.actors.Image;
public class FirstGame implements ApplicationListener {
private Stage stage;
private Texture texture;
@Override
public void create() {
stage = new Stage(Gdx.graphics.getWidth(), Gdx.graphics.getHeight(),
true);
texture = new Texture(Gdx.files.internal("star.png"));
texture.setFilter(TextureFilter.Linear, TextureFilter.Linear);
float duration = 4f;
int maxwidth = Gdx.graphics.getWidth() - texture.getWidth();
int maxheight = Gdx.graphics.getHeight() - texture.getHeight();
for (int i = 0; i < 20; i++) {
Image image = new Image("star" + i, texture);
image.x = MathUtils.random(0, maxwidth);
image.y = MathUtils.random(0, Gdx.graphics.getHeight()); //随机出现
Action moveAction = Sequence.$(MoveTo.$(MathUtils.random(0,
maxwidth), MathUtils.random(0, maxheight), duration / 2),
MoveBy.$(MathUtils.random(0, maxwidth), MathUtils.random(0,
maxheight), duration / 2)); //移动方向和地点随机
Action rotateAction = RotateTo.$(360, duration); //旋转
Action fadeAction = Repeat.$(Sequence.$(FadeOut.$(duration / 20),
FadeIn.$(duration / 20)), 10); //闪烁,重复10次
image.action(Parallel.$(moveAction, rotateAction, fadeAction)); //所有action并行
stage.addActor(image);
}
Gdx.input.setInputProcessor(stage);
}
@Override
public void dispose() {
texture.dispose();
stage.dispose();
}
@Override
public void pause() {
// TODO Auto-generated method stub
}
@Override
public void render() {
Gdx.gl.glClear(GL10.GL_COLOR_BUFFER_BIT);
stage.act(Gdx.graphics.getDeltaTime());
stage.draw();
}
@Override
public void resize(int width, int height) {
// TODO Auto-generated method stub
}
@Override
public void resume() {
// TODO Auto-generated method stub
}
}

效果(图片有点大...多等等):

xingxing
图片分享:

其实每个action的用法都很简单,主要问题是怎么组合排列来显示一种符合需求的效果。

我发现libgdx的更新不是一般快,每天都有几个版本的。那个通过文件配置UI样式让我觉得非常有意思,但是具体操作中有诸多问题。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值