Hi, after I have found a plane I want to manually pause the detection so the plane does not keep changing. How can I do this?
Edit: Basically I want to change Plane Detection to “None”, then be able to change it back to Horizontal+Vertical while keeping the planes that were detected before I switched the Plane Detection off
Sorry, its just if you search the members there are many other members with the same unity name as you except the random characters at the end are different. They have all been found to be bots, all asking questions in posts like yours so I assumed this was one too. Obviously you are not so my apologies
Why did you choose a name that appears to be autogenerated, im curious?
Is it from some sort of 3rd party site used to sign up or something?
In a script, you need to update the settings to None. For my needs, I had to delete all but the last plane detected, I only wanted one plane. This is from the UnityARCameraManager.cs script in the PointCloud example.
public UnityARPlaneDetection planeDetection = UnityARPlaneDetection.None;
ARKitWorldTrackingSessionConfiguration config = new ARKitWorldTrackingSessionConfiguration();
config.planeDetection = planeDetection;