0

我已经成功地将 vuforia 与 jpct-ae 集成在一起。现在,我想将多维数据集更改为其他对象(obj 或 md2 文件)。下面是我在 ImageTargetRenderer.java 中的代码(不确定是真是假)。如何调用此对象以在标记上渲染?

public void banana()
{
    world = new World();
    world.setAmbientLight(20, 20, 20);

    sun = new Light(world);
    sun.setIntensity(250, 250, 250);
    mngr = mActivity.getAssets();
    try {
        objStream = mngr.open("bananatree.obj");
        } catch (IOException e) {
            e.printStackTrace();
        }
    try {
        mtlStream = mngr.open("bananatree.mtl");
        } catch (IOException e) {
            e.printStackTrace();
        }

    model = Loader.loadOBJ(objStream, mtlStream, 1);
}
4

0 回答 0