这是我的树结构在 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 中保留该结构?