コード例 #1
0
 /// <summary>
 /// Check the availability of the given module. Can be called at any time, including before
 /// session is resumed for the first time.
 /// </summary>
 /// <param name="module">The name of the feature module for which to check the
 /// availability.</param>
 /// <returns>The availability status of the given module.</returns>
 public static FeatureModuleStatus CheckModuleAvailability(
     FeatureModule module)
 {
     return(SessionApi.CheckModuleAvailability(
                _instance.currentARCoreSessionHandle, module));
 }