这是我的树结构在eclipse中的样子:
例如,这就是我加载着色器的方法:
// Eclipse side-effect of linking assets, assets are copied in bin folder
if (Gdx.app.getType() == ApplicationType.Android) {
dirHandle = Gdx.files.internal("data/shaders");
} else {
// ApplicationType.Desktop ..
dirHandle = Gdx.files.internal("./bin/data/shaders");
}
当我制作可执行jar时,它看起来像这样:
我应该如何引用资产,还是有办法在Eclipse中保留该结构?