/// <summary> /// Same as import(), except it imports a resource without blocking the main thread. The resulting resource will be /// placed in the returned AsyncOp object when the import ends. /// </summary> public static AsyncOp <RRefBase> ImportAsync(string inputFilePath, ImportOptions importOptions) { UUID UUID = new UUID(); return(Internal_importAsync(inputFilePath, importOptions, ref UUID)); }