为什么我在设置LibGDX时没有通用的补间引擎

时间:2014-08-01 15:09:45

标签: libgdx game-engine tween

按照设置A LibGDX项目的教程,教程说在第三方部分应该有一个通用补间引擎。地雷没有出现,有没有办法出现?我有什么下载的?

提前致谢:))

3 个答案:

答案 0 :(得分:3)

Gdx-setup-new-ui-jar没有TweenEngine库。 还有另一种添加Universal TweenEngine的方法。由于您现在使用Gradle,因此非常容易。

从这里https://code.google.com/p/java-universal-tween-engine/downloads/list下载TweenEngine并将其粘贴到您的core / libs android / libs和ios / libs文件夹中。

build.gradle中的

在core,android和ios的依赖关系的末尾添加这一行。

    compile fileTree(dir: 'libs', include: '*.jar')
像这样:

    project(":android") {
    apply plugin: "android"

    configurations { natives }

     dependencies {
      compile project(":core")
      compile "com.badlogicgames.gdx:gdx-backend-android:$gdxVersion"
      natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-x86"
      natives "com.badlogicgames.gdx:gdx-bullet-platform:$gdxVersion:natives-x86"
      compile fileTree(dir: 'libs', include: '*.jar')
     }
    }

然后只需清理/构建你的项目就可以了。

答案 1 :(得分:1)

LibGdx使用gradle进行依赖关系管理 您可以从存储库中注入依赖项。

subplot('h1',1,3,1)
   plot('h1',N_vec,1./Err(N_vec),sprintf('*%c',colconds(loop)),'LineWidth',5)
   hold on
   plot('h1',N_vec,1./ErrPV(N_vec),sprintf('*%c',colconds(loop+2)),'LineWidth',5)
   hold on
   xlabel('h1','Population size','fontsize',20)
   ylabel('h1','Error^-2 ','fontsize',20)
   legend('h1','OLE','PV','OLE shuffled','PV shuffled','Location','northwest')

在root build.gradle文件的核心模块中添加这些行。

repositories {
  maven { url "https://jitpack.io" }
}

答案 2 :(得分:0)

对我而言:

compile fileTree(dir: 'libs', include: '*.jar')

为:

compile fileTree(dir: '../libs/tween-engine-api-6.3.3 2', include: '*.jar')

做了这个伎俩。 (显然你的文件名可能不同(例如最后没有2))