我正在使用Rajawali for android加载一个3ds模型并正确显示它。
parser = new Loader3DSMax(this, R.raw.riale_3ds);
但该对象提供了多个Texture jpgs。我无法弄清楚如何在Rajawali中使用这些纹理。我已经看到该对象在我的PC上的其他3D模型查看器中正确打开。
material.addTexture(new Texture("dcmap1", R.drawable.dcmap1));
material.addTexture(new Texture("dcmap2", R.drawable.dcmap2));
material.addTexture(new Texture("dcmap3", R.drawable.dcmap3));
我在这个对象上应用这个材料,如果我只应用一个它似乎没问题,但是当我做上面的事情时它会搞砸。