When I run markerless tracking , I get this error.
ArbiTrack is not supported on this platform
UnityEngine.Debug:LogWarning(Object)
I checked both the API keys and bundle identifier. both are correct. What is the error then?
When I run markerless tracking , I get this error.
ArbiTrack is not supported on this platform
UnityEngine.Debug:LogWarning(Object)
I checked both the API keys and bundle identifier. both are correct. What is the error then?
Hi. Arbitrack works only with Android or iOS. You cannot run markerless tracking in UnityEditor.
See Tracker.cs in ArbiTrackStart:
#if UNITY_EDITOR
Debug.LogWarning("ArbiTrack is not supported on this platform");
#elif UNITY_IOS
//...
#elif UNITY_ANDROID
//...
#endif