如何使用libgdx在Android工作室中绘制平铺地图


mapLoader = new TmxMapLoader ();
map = mapLoader.load ( "saa.tmx" );
renderer = new OrthogonalTiledMapRenderer ( map );

我的错误是:

Exception in thread "LWJGL Application" com.badlogic.gdx.utils.SerializationException: Error parsing file: saa.tmx

如何解决这个问题?

libGDX 似乎找不到该文件。

  • 路径是否正确?(它从您的"anroid/assets"文件夹开始(
  • 也许尝试使用Gdx.files.internal("saa.tmx")或者更确切地说是Gdx.files.internal("saa.tmx").path()

相关内容

  • 没有找到相关文章

最新更新