forked from MattRix/UnityDecompiled
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathAssetBundle.cs
More file actions
211 lines (211 loc) · 7.68 KB
/
Copy pathAssetBundle.cs
File metadata and controls
211 lines (211 loc) · 7.68 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
using System;
using System.Runtime.CompilerServices;
using UnityEngineInternal;
namespace UnityEngine
{
public sealed class AssetBundle : Object
{
public extern Object mainAsset
{
[WrapperlessIcall]
[MethodImpl(MethodImplOptions.InternalCall)]
get;
}
[WrapperlessIcall]
[MethodImpl(MethodImplOptions.InternalCall)]
public static extern AssetBundleCreateRequest CreateFromMemory(byte[] binary);
[WrapperlessIcall]
[MethodImpl(MethodImplOptions.InternalCall)]
public static extern AssetBundle CreateFromMemoryImmediate(byte[] binary);
[WrapperlessIcall]
[MethodImpl(MethodImplOptions.InternalCall)]
public static extern AssetBundle CreateFromFile(string path);
[WrapperlessIcall]
[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), WrapperlessIcall, 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), WrapperlessIcall]
[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), WrapperlessIcall]
[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);
}
[WrapperlessIcall, 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);
}
[WrapperlessIcall]
[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);
}
[WrapperlessIcall]
[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);
}
[WrapperlessIcall]
[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(string.Empty, 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(string.Empty, type);
}
[WrapperlessIcall]
[MethodImpl(MethodImplOptions.InternalCall)]
public extern void Unload(bool unloadAllLoadedObjects);
[Obsolete("This method is deprecated. Use GetAllAssetNames() instead.")]
public string[] AllAssetNames()
{
return this.GetAllAssetNames();
}
[WrapperlessIcall]
[MethodImpl(MethodImplOptions.InternalCall)]
public extern string[] GetAllAssetNames();
[WrapperlessIcall]
[MethodImpl(MethodImplOptions.InternalCall)]
public extern string[] GetAllScenePaths();
}
}