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