- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 keyup
和 keyDown
在游戏 Sprite 的不同动画之间切换。在 keyDown
上, Sprite 根据按下的键切换动画,在 keyUp
上, Sprite 切换回空闲动画。它适用于像走路这样的较小动画,但是当我松开按键时动画有点长时, Sprite 会回到空闲动画而不会完成上一个动画。我该如何实现?我尝试阅读 libgdx 的动画文档,但方法 isAnimationFinished
不是我需要的。
package com.mygdx.game;
import com.badlogic.gdx.ApplicationAdapter;
import com.badlogic.gdx.Gdx;
import com.badlogic.gdx.Input;
import com.badlogic.gdx.InputProcessor;
import com.badlogic.gdx.graphics.GL20;
import com.badlogic.gdx.graphics.OrthographicCamera;
import com.badlogic.gdx.graphics.g2d.Animation;
import com.badlogic.gdx.graphics.g2d.SpriteBatch;
import com.badlogic.gdx.graphics.g2d.TextureAtlas;
import com.badlogic.gdx.maps.tiled.TiledMap;
import com.badlogic.gdx.maps.tiled.TiledMapRenderer;
import com.badlogic.gdx.maps.tiled.TmxMapLoader;
import com.badlogic.gdx.maps.tiled.renderers.OrthogonalTiledMapRenderer;
public class MyGdxGame extends ApplicationAdapter implements InputProcessor {
private SpriteBatch batch;
private TextureAtlas textureAtlas;
private Animation animation;
private Animation animation2;
private Animation animation3;
private Animation currentAnimation;
private float elapsedTime = 0;
TiledMap tiledMap;
OrthographicCamera camera;
TiledMapRenderer tiledMapRenderer;
int[] pos = {30,30};
int acc = 0;
int acc_cam = 0;
@Override
public void create() {
batch = new SpriteBatch();
textureAtlas = new TextureAtlas(Gdx.files.internal("Wolverine.txt"));
// textureAtlas = new TextureAtlas(Gdx.files.internal("spritesheet.atlas"));
// textureAtlas2 = new TextureAtlas(Gdx.files.internal("spritesheet(copy).atlas"));
// animation = new Animation(1/7f, textureAtlas.getRegions());
// animation2 = new Animation(1/7f, textureAtlas2.getRegions());
animation = new Animation(1/7f, textureAtlas.findRegions("Standing"));
animation2 = new Animation(1/7f, textureAtlas.findRegions("Walking"));
animation3 = new Animation(1/15f, textureAtlas.findRegions("Attcak_Stand"));
currentAnimation = animation;
camera = new OrthographicCamera();
camera.setToOrtho(false, 640, 480);
tiledMap = new TmxMapLoader().load("Tiled_tilesheet2.tmx");
tiledMapRenderer = new OrthogonalTiledMapRenderer(tiledMap);
Gdx.input.setInputProcessor(this);
}
@Override
public void dispose() {
batch.dispose();
tiledMap.dispose();
textureAtlas.dispose();
}
@Override
public void render() {
pos[0] += acc;
camera.translate(acc_cam,0);
Gdx.gl.glClearColor(0, 0, 0, 1);
Gdx.gl.glClear(GL20.GL_COLOR_BUFFER_BIT);
camera.update();
tiledMapRenderer.setView(camera);
tiledMapRenderer.render();
batch.begin();
//sprite.draw(batch);
elapsedTime += Gdx.graphics.getDeltaTime();
batch.draw(currentAnimation.getKeyFrame(elapsedTime, true), pos[0],pos[1]);
batch.end();
}
@Override
public void resize(int width, int height) {
}
@Override
public void pause() {
}
@Override
public void resume() {
}
@Override
public boolean keyDown(int keycode) {
if (keycode == Input.Keys.RIGHT) {
currentAnimation = animation2;
if(pos[0]>320){acc_cam+=2;}
else{acc += 2;}
}
else if(keycode == Input.Keys.Z){
currentAnimation = animation3;
}
return true;
}
@Override
public boolean keyUp(int keycode) {
currentAnimation = animation;
acc_cam=0;
acc = 0;
return false;
}
@Override
public boolean keyTyped(char character) {
return false;
}
@Override
public boolean touchDown(int screenX, int screenY, int pointer, int button) {
return false;
}
@Override
public boolean touchUp(int screenX, int screenY, int pointer, int button) {
return false;
}
@Override
public boolean touchDragged(int screenX, int screenY, int pointer) {
return false;
}
@Override
public boolean mouseMoved(int screenX, int screenY) {
return false;
}
@Override
public boolean scrolled(int amount) {
return false;
}
}
最佳答案
Animation 类无法在当前动画完成时通知您(如回调)。 isAnimationFinished() 会告诉您动画是否将在播放模式#NORMAL 下完成,我相信您的动画设置为因为您的构造函数没有指示它们循环。
您的渲染代码总是绘制一个动画,该动画是根据按键输入设置的。所以这就是为什么任何当前动画突然停止,因为你告诉它立即切换。
我不知道您对各种动画(长度、调用时间等)的计划是什么。您可能需要重构您的代码,以确定您想要播放哪些动画,以及它如何与您的其他动画或按键输入策略联系起来,等等。一个简单的解决方案可能是根据某些关键输入设置“下一个动画”,并让您的代码检查当前动画以查看它是否完成(使用 isAnimationeFinished - 您必须在每一帧执行此操作)。如果完成,将下一个动画换成当前动画。如果您循环播放动画,您也必须将其考虑到您的逻辑中。
另一种选择是编写您自己的回调/监听器代码来告诉您动画何时结束。向下滚动(几乎在末尾)这篇文章以获得一些想法:http://www.rengelbert.com/tutorial.php?id=179
可能还有其他几个选项,但都取决于您希望如何在动画之间转换,而且只有您知道,因为有些动画很短,有些很长,并且它们会根据您的输入而变化在你的游戏中创造。
关于android - 在切换到另一个动画之前等待动画完成?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38583587/
我正在尝试创建一个简单的小部件,它只有一个切换按钮,但我的 AVD 模拟器上不断出现错误,提示“加载小部件有问题”。 似乎是因为我在小部件布局中添加了开关或切换按钮。 为了测试它,我创建了一个新的空
我正在使用 GLFW 进行键盘输入,但处理速度太快,因此我的 bool 开关在一次按下时被更改了 10 次,因为输入是每一帧处理的。我只需要按一次空格键即可切换状态。我当前的代码如下: if (glf
我希望完成一个相当简单的任务(我希望!) 我有两个 div 标签和一个 anchor 标签,像这样: forgot password? 我希望使用 anchor 标记在两个 div 标记之间切换,
我已经尝试了几种不同的方法,但似乎无法弄清楚如何将 span 的类从“die2”切换到“die3”以及将 div 的显示样式从“block”切换到“none”。有人有任何解决方案吗? (基本上当页面加
我正在尝试制作一个交换小部件,该小部件显示两个不同的文本。激活时,它下面显示一个TextField,顶部是不可见的,而禁用时它上面显示一个Text,而底部是不可见。但是它没有在屏幕上显示任何内容,只是
我有一个简单的 Angular 应用程序,它使用两个模板和 Controller 。放置两个按钮来切换 View 。它们调用在控件内定义的函数,该函数使用 window.location='' 来切换
我想要一个 div 切换它的类(切换)onclick,然后再次恢复到原来的类 onclick 我的代码是: function myfunc() { //the code over here
我确信这是一个常见问题,我已经尝试了该网站上的许多线程来尝试解决我的问题,但我似乎无法使其正常工作。基本上我有一个子菜单,当父菜单悬停在其上时需要显示该子菜单,但是如果您在加载完成之前将鼠标从菜单项上
我制作了一个 JavaScript 函数来隐藏单击按钮时的链接及其在该函数中的工作 function toggle() { var ele = document.getElement
我正在使用我在 JS fiddle 上找到的这个脚本:http://jsfiddle.net/Q4PUw/2/ 当我点击切换链接时,它会切换框并显示它,但是,它会跳回页面顶部,然后我必须再次向下滚动才
我正在 GoDaddy 上的共享服务器 IP 上构建 Web 应用程序。该应用程序与验证请求服务器 IP 的房地产 API 进行对话。问题是在 GoDaddy 上,我们的 IP 被列为 X,但它实际上
我在 jquery 中有一个简单的脚本,可以在 时切换 div(显示和隐藏)。被点击(我正在使用 Bootstrap )。 HTML: Advanced search This is t
我有两个 NSWindows,其中都有一个 NSPanel。我想在按下按钮时切换窗口。如何才能做到这一点?我不再需要旧窗口,所以我只想显示新窗口。 最佳答案 要聚焦第二个窗口,只需调用: [windo
我尝试在单击切换时将选项添加到选择菜单,但如果再次单击(取消选择),则可以将其删除。到目前为止,我可以在单击时向选择菜单添加单个值,但无法将其删除(切换添加切换删除) 这是我的代码: HTML
我正在尝试隐藏所属行。例如,如果您单击“子标题 1”,则将仅隐藏项目 1、项目 2 和项目 3 行。 示例: title Sub Title 1
似乎无法让它为我工作,任何人都可以为我提供帮助吗? http://codepen.io/anon/pen/kABjC 这应该根据点击打开和关闭文本部分,它采用 ID #,它只是一个数字(1,2,3,4
我正在从一个文件复制到另一个文件,并且我可以看到 Excel 在源文件和目标文件之间切换(如闪烁)。我希望宏从源复制并粘贴到目标,而不在文件之间切换(我不想闪烁)。 这里我得到了我的 Excel VB
我正在尝试制作一个带切换功能的 Accordion ,现在看起来效果很好。作为 javascript 的新手,我希望得到一些帮助,那就是它的组合方式。 http://jsfiddle.net/z3wW
我正在尝试制作一个小脚本,其中屏幕将每 100 毫秒随机更改一次背景颜色,您可以通过按一个按钮来打开和关闭它。我可以让它开始,但我不能让它停止。 这是切换的主要代码: var on = -1; fun
我确信这里应该已经涵盖了这一点,但我一直无法找到专门涉及此问题的问题。 我在一个页面中有 2 个 div,就像这样...... ...content... ...content...
我是一名优秀的程序员,十分优秀!