UnityEditor.AssetServer.AssetIsBinaryByGUID C# (CSharp) Method

AssetIsBinaryByGUID() private method

private AssetIsBinaryByGUID ( string guid ) : bool
guid string
return bool
        public static extern bool AssetIsBinaryByGUID(string guid);
        [MethodImpl(MethodImplOptions.InternalCall)]

Usage Example

示例#1
0
 private bool AtLeastOneSelectedAssetCanBeMerged()
 {
     for (int i = 0; i < this.downloadConflicts.Length; i++)
     {
         if (this.selectedLV1Items[i] && !AssetServer.AssetIsBinaryByGUID(this.downloadConflicts[i]) && !AssetServer.IsItemDeleted(this.downloadConflicts[i]))
         {
             return(true);
         }
     }
     return(false);
 }
All Usage Examples Of UnityEditor.AssetServer::AssetIsBinaryByGUID
AssetServer