forked from MattRix/UnityDecompiled
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAssetBundle.cs
More file actions
325 lines (276 loc) · 10.4 KB
/
AssetBundle.cs
File metadata and controls
325 lines (276 loc) · 10.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
using System;
using System.ComponentModel;
using System.Runtime.CompilerServices;
using UnityEngine.Internal;
using UnityEngine.Scripting;
using UnityEngineInternal;
namespace UnityEngine
{
public sealed class AssetBundle : Object
{
public extern Object mainAsset
{
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
get;
}
public extern bool isStreamedSceneAssetBundle
{
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
get;
}
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
public static extern AssetBundleCreateRequest LoadFromFileAsync(string path, [UnityEngine.Internal.DefaultValue("0")] uint crc, [UnityEngine.Internal.DefaultValue("0")] ulong offset);
[ExcludeFromDocs]
public static AssetBundleCreateRequest LoadFromFileAsync(string path, uint crc)
{
ulong offset = 0uL;
return AssetBundle.LoadFromFileAsync(path, crc, offset);
}
[ExcludeFromDocs]
public static AssetBundleCreateRequest LoadFromFileAsync(string path)
{
ulong offset = 0uL;
uint crc = 0u;
return AssetBundle.LoadFromFileAsync(path, crc, offset);
}
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
public static extern AssetBundle LoadFromFile(string path, [UnityEngine.Internal.DefaultValue("0")] uint crc, [UnityEngine.Internal.DefaultValue("0")] ulong offset);
[ExcludeFromDocs]
public static AssetBundle LoadFromFile(string path, uint crc)
{
ulong offset = 0uL;
return AssetBundle.LoadFromFile(path, crc, offset);
}
[ExcludeFromDocs]
public static AssetBundle LoadFromFile(string path)
{
ulong offset = 0uL;
uint crc = 0u;
return AssetBundle.LoadFromFile(path, crc, offset);
}
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
public static extern AssetBundleCreateRequest LoadFromMemoryAsync(byte[] binary, [UnityEngine.Internal.DefaultValue("0")] uint crc);
[ExcludeFromDocs]
public static AssetBundleCreateRequest LoadFromMemoryAsync(byte[] binary)
{
uint crc = 0u;
return AssetBundle.LoadFromMemoryAsync(binary, crc);
}
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
public static extern AssetBundle LoadFromMemory(byte[] binary, [UnityEngine.Internal.DefaultValue("0")] uint crc);
[ExcludeFromDocs]
public static AssetBundle LoadFromMemory(byte[] binary)
{
uint crc = 0u;
return AssetBundle.LoadFromMemory(binary, crc);
}
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
public extern bool Contains(string name);
[Obsolete("Method Load has been deprecated. Script updater cannot update it as the loading behaviour has changed. Please use LoadAsset instead and check the documentation for details.", true)]
public Object Load(string name)
{
return null;
}
[Obsolete("Method Load has been deprecated. Script updater cannot update it as the loading behaviour has changed. Please use LoadAsset instead and check the documentation for details.", true)]
public T Load<T>(string name) where T : Object
{
return (T)((object)null);
}
[Obsolete("Method Load has been deprecated. Script updater cannot update it as the loading behaviour has changed. Please use LoadAsset instead and check the documentation for details.", true), GeneratedByOldBindingsGenerator, TypeInferenceRule(TypeInferenceRules.TypeReferencedBySecondArgument)]
[MethodImpl(MethodImplOptions.InternalCall)]
public extern Object Load(string name, Type type);
[Obsolete("Method LoadAsync has been deprecated. Script updater cannot update it as the loading behaviour has changed. Please use LoadAssetAsync instead and check the documentation for details.", true), GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
public extern AssetBundleRequest LoadAsync(string name, Type type);
[Obsolete("Method LoadAll has been deprecated. Script updater cannot update it as the loading behaviour has changed. Please use LoadAllAssets instead and check the documentation for details.", true), GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
public extern Object[] LoadAll(Type type);
[Obsolete("Method LoadAll has been deprecated. Script updater cannot update it as the loading behaviour has changed. Please use LoadAllAssets instead and check the documentation for details.", true)]
public Object[] LoadAll()
{
return null;
}
[Obsolete("Method LoadAll has been deprecated. Script updater cannot update it as the loading behaviour has changed. Please use LoadAllAssets instead and check the documentation for details.", true)]
public T[] LoadAll<T>() where T : Object
{
return null;
}
public Object LoadAsset(string name)
{
return this.LoadAsset(name, typeof(Object));
}
public T LoadAsset<T>(string name) where T : Object
{
return (T)((object)this.LoadAsset(name, typeof(T)));
}
[TypeInferenceRule(TypeInferenceRules.TypeReferencedBySecondArgument)]
public Object LoadAsset(string name, Type type)
{
if (name == null)
{
throw new NullReferenceException("The input asset name cannot be null.");
}
if (name.Length == 0)
{
throw new ArgumentException("The input asset name cannot be empty.");
}
if (type == null)
{
throw new NullReferenceException("The input type cannot be null.");
}
return this.LoadAsset_Internal(name, type);
}
[GeneratedByOldBindingsGenerator, TypeInferenceRule(TypeInferenceRules.TypeReferencedBySecondArgument)]
[MethodImpl(MethodImplOptions.InternalCall)]
private extern Object LoadAsset_Internal(string name, Type type);
public AssetBundleRequest LoadAssetAsync(string name)
{
return this.LoadAssetAsync(name, typeof(Object));
}
public AssetBundleRequest LoadAssetAsync<T>(string name)
{
return this.LoadAssetAsync(name, typeof(T));
}
public AssetBundleRequest LoadAssetAsync(string name, Type type)
{
if (name == null)
{
throw new NullReferenceException("The input asset name cannot be null.");
}
if (name.Length == 0)
{
throw new ArgumentException("The input asset name cannot be empty.");
}
if (type == null)
{
throw new NullReferenceException("The input type cannot be null.");
}
return this.LoadAssetAsync_Internal(name, type);
}
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
private extern AssetBundleRequest LoadAssetAsync_Internal(string name, Type type);
public Object[] LoadAssetWithSubAssets(string name)
{
return this.LoadAssetWithSubAssets(name, typeof(Object));
}
public T[] LoadAssetWithSubAssets<T>(string name) where T : Object
{
return Resources.ConvertObjects<T>(this.LoadAssetWithSubAssets(name, typeof(T)));
}
public Object[] LoadAssetWithSubAssets(string name, Type type)
{
if (name == null)
{
throw new NullReferenceException("The input asset name cannot be null.");
}
if (name.Length == 0)
{
throw new ArgumentException("The input asset name cannot be empty.");
}
if (type == null)
{
throw new NullReferenceException("The input type cannot be null.");
}
return this.LoadAssetWithSubAssets_Internal(name, type);
}
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
internal extern Object[] LoadAssetWithSubAssets_Internal(string name, Type type);
public AssetBundleRequest LoadAssetWithSubAssetsAsync(string name)
{
return this.LoadAssetWithSubAssetsAsync(name, typeof(Object));
}
public AssetBundleRequest LoadAssetWithSubAssetsAsync<T>(string name)
{
return this.LoadAssetWithSubAssetsAsync(name, typeof(T));
}
public AssetBundleRequest LoadAssetWithSubAssetsAsync(string name, Type type)
{
if (name == null)
{
throw new NullReferenceException("The input asset name cannot be null.");
}
if (name.Length == 0)
{
throw new ArgumentException("The input asset name cannot be empty.");
}
if (type == null)
{
throw new NullReferenceException("The input type cannot be null.");
}
return this.LoadAssetWithSubAssetsAsync_Internal(name, type);
}
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
private extern AssetBundleRequest LoadAssetWithSubAssetsAsync_Internal(string name, Type type);
public Object[] LoadAllAssets()
{
return this.LoadAllAssets(typeof(Object));
}
public T[] LoadAllAssets<T>() where T : Object
{
return Resources.ConvertObjects<T>(this.LoadAllAssets(typeof(T)));
}
public Object[] LoadAllAssets(Type type)
{
if (type == null)
{
throw new NullReferenceException("The input type cannot be null.");
}
return this.LoadAssetWithSubAssets_Internal("", type);
}
public AssetBundleRequest LoadAllAssetsAsync()
{
return this.LoadAllAssetsAsync(typeof(Object));
}
public AssetBundleRequest LoadAllAssetsAsync<T>()
{
return this.LoadAllAssetsAsync(typeof(T));
}
public AssetBundleRequest LoadAllAssetsAsync(Type type)
{
if (type == null)
{
throw new NullReferenceException("The input type cannot be null.");
}
return this.LoadAssetWithSubAssetsAsync_Internal("", type);
}
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
public extern void Unload(bool unloadAllLoadedObjects);
[Obsolete("This method is deprecated. Use GetAllAssetNames() instead.")]
public string[] AllAssetNames()
{
return this.GetAllAssetNames();
}
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
public extern string[] GetAllAssetNames();
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
public extern string[] GetAllScenePaths();
[EditorBrowsable(EditorBrowsableState.Never), Obsolete("Method CreateFromFile has been renamed to LoadFromFile (UnityUpgradable) -> LoadFromFile(*)", true)]
public static AssetBundle CreateFromFile(string path)
{
return null;
}
[EditorBrowsable(EditorBrowsableState.Never), Obsolete("Method CreateFromMemory has been renamed to LoadFromMemoryAsync (UnityUpgradable) -> LoadFromMemoryAsync(*)", true)]
public static AssetBundleCreateRequest CreateFromMemory(byte[] binary)
{
return null;
}
[EditorBrowsable(EditorBrowsableState.Never), Obsolete("Method CreateFromMemoryImmediate has been renamed to LoadFromMemory (UnityUpgradable) -> LoadFromMemory(*)", true)]
public static AssetBundle CreateFromMemoryImmediate(byte[] binary)
{
return null;
}
}
}