Requests Space Setup using a list of classifications (may be null or empty).
Space Setup pauses the application and prompts the user to setup their Space. The app resumes when the user either cancels or completes Space Setup.If not null or empty, <parmaref name="classifications"> is a list of semantic labels that the user must define during Space Setup. You may specify the same label multiple times. For example,
await RequestSpaceSetup(new [] {Classification.Table, Classification.Table});
would prompt the user to define two tables.See
OVRSemanticLabels.Classification for a list of all labels.This method is asynchronous. The result of the task indicates whether the operation was successful. false usually indicates an unexpected failure; if the user cancels Space Setup, the operation still completes successfully.
Parametersclassifications(Optional) The types of anchors that the user should define.
ReturnsReturns a task that can be used to track the asynchronous operation.