I'm trying to test ARCore in conjunction with Vuforia in Unity by following official guide: https://library.vuforia.com/content/vuforia-library/en/articles/Solution/arcore-with-vuforia.html I downloaded ARCore library (core-1.4.0) and placed itnto plugins/android folder. On the Galaxy S9 I'm getting weird camera issue with green stripes and stereoscipic view. Without ARCore library Vuforia works fine! Did I miss some settings for project? I tried disabling Multithreaded rendering, uplifting android API requirements but nothing worked yet.
edit:
Switching from the app back and forth fixes this issue! So it looks like a bug
Thank you for response! I found out that extended tracking enabling script was causing such issues:();
void OnVuforiaInitialized()
{
var deviceTracker = TrackerManager.Instance.InitTracker
VuforiaConfiguration.Instance.DeviceTracker.FusionMode = FusionProviderType.OPTIMIZE_IMAGE_TARGETS_AND_VUMARKS;
deviceTracker.Start();
}
Can't say what line exactly is causing it but probably starting device tracker without ensuring there is other tracker still active. Maybe you should add some additional fool proof check for this :)