示例#1
0
 /// <summary>
 /// Requests that one or more feature modules be downloaded and installed at some point in
 /// the future. Use <c><see cref="RequestModuleInstallImmediate"/></c> to begin immediately.
 /// Use <c><see cref="CheckModuleAvailability"/></c> to determine module availability before
 /// configuring the session. Only modules that are supported on this device will be
 /// scheduled for download and installation.
 /// Any modules that were already scheduled for immediate installation will continue to be
 /// installed immediately.
 /// </summary>
 /// <param name="modules">The list of modules to be installed.</param>
 public static void RequestModuleInstallDeferred(List <FeatureModule> modules)
 {
     SessionApi.RequestModuleInstallDeferred(
         _instance.currentARCoreSessionHandle, modules);
 }