Android 无法在ARCore中呈现多个AugmntedImage节点

Android 无法在ARCore中呈现多个AugmntedImage节点,android,augmented-reality,arcore,sceneform,Android,Augmented Reality,Arcore,Sceneform,我想通过使用ARCore扫描参考图像,在SceneView上渲染不同的augmenteImage节点。节点在第一次扫描时被完美地渲染,但之后如果我扫描其他图像,它们会进入跟踪状态,但无法渲染 if (!augmentedImageMap.containsKey(currentAugmentedImage)){ AugmentedImageNode node = new AugmentedImageNode(this,currentAugmentedImage); augmente

我想通过使用ARCore扫描参考图像,在SceneView上渲染不同的
augmenteImage
节点。节点在第一次扫描时被完美地渲染,但之后如果我扫描其他图像,它们会进入跟踪状态,但无法渲染

if (!augmentedImageMap.containsKey(currentAugmentedImage)){
    AugmentedImageNode node = new AugmentedImageNode(this,currentAugmentedImage);
    augmentedImageMap.put(currentAugmentedImage, node);
    arFragment.getArSceneView().getScene().addChild(node);
}
我还尝试了
node.setParent(arFragment.getArSceneView().getScene())
但结果是一样的。 渲染节点的代码是相同的,但我想知道为什么只渲染第一个节点