UnityEditor.EditorUtility.GetActiveNativePlatformSupportModuleName C# (CSharp) Method

GetActiveNativePlatformSupportModuleName() private method

private GetActiveNativePlatformSupportModuleName ( ) : string
return string
        internal static extern string GetActiveNativePlatformSupportModuleName();
        [Obsolete("Use AssetDatabase.GetAssetPath")]

Usage Example

示例#1
0
 private void CheckForPlatformModuleChange()
 {
     if (this.m_ActiveNativePlatformSupportModule != EditorUtility.GetActiveNativePlatformSupportModuleName())
     {
         ProfilerDriver.ResetHistory();
         this.Initialize();
         this.m_ActiveNativePlatformSupportModule = EditorUtility.GetActiveNativePlatformSupportModuleName();
     }
 }
All Usage Examples Of UnityEditor.EditorUtility::GetActiveNativePlatformSupportModuleName
EditorUtility