-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathlink.xml
More file actions
79 lines (73 loc) · 4.18 KB
/
link.xml
File metadata and controls
79 lines (73 loc) · 4.18 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
<linker>
<!-- This file tells the linker not to strip metadata from certain assemblies an classes.
The C# JavaScript bridge needs this metadata, so we disable it with preserve="all".
TODO: Narrow it down to only the classes we actually need to expose to JavaScript. -->
<!-- This assembly contains System classes. -->
<assembly fullname="System" preserve="all"/>
<!-- These assemblies contain UnityEngine classes. -->
<assembly fullname="UnityEngine" preserve="all"/>
<assembly fullname="UnityEngine.CoreModule" preserve="all"/>
<assembly fullname="UnityEngine.PhysicsModule" preserve="all"/>
<!--
<assembly fullname="UnityEngine.ParticleSystemModule" preserve="all"/>
This is disabled because it was causing the following functions to be undefined in the latest release of Unity.
Note that they are now all marked as obsolete in this new version.
function __Z73Register_UnityEngine_ParticleSystem_SubEmittersModule_get_birth0_Injectedv() {
err("missing function: _Z73Register_UnityEngine_ParticleSystem_SubEmittersModule_get_birth0_Injectedv");
abort(-1)
}
function __Z73Register_UnityEngine_ParticleSystem_SubEmittersModule_get_birth1_Injectedv() {
err("missing function: _Z73Register_UnityEngine_ParticleSystem_SubEmittersModule_get_birth1_Injectedv");
abort(-1)
}
function __Z73Register_UnityEngine_ParticleSystem_SubEmittersModule_get_death0_Injectedv() {
err("missing function: _Z73Register_UnityEngine_ParticleSystem_SubEmittersModule_get_death0_Injectedv");
abort(-1)
}
function __Z73Register_UnityEngine_ParticleSystem_SubEmittersModule_get_death1_Injectedv() {
err("missing function: _Z73Register_UnityEngine_ParticleSystem_SubEmittersModule_get_death1_Injectedv");
abort(-1)
}
function __Z73Register_UnityEngine_ParticleSystem_SubEmittersModule_set_birth0_Injectedv() {
err("missing function: _Z73Register_UnityEngine_ParticleSystem_SubEmittersModule_set_birth0_Injectedv");
abort(-1)
}
function __Z73Register_UnityEngine_ParticleSystem_SubEmittersModule_set_birth1_Injectedv() {
err("missing function: _Z73Register_UnityEngine_ParticleSystem_SubEmittersModule_set_birth1_Injectedv");
abort(-1)
}
function __Z73Register_UnityEngine_ParticleSystem_SubEmittersModule_set_death0_Injectedv() {
err("missing function: _Z73Register_UnityEngine_ParticleSystem_SubEmittersModule_set_death0_Injectedv");
abort(-1)
}
function __Z73Register_UnityEngine_ParticleSystem_SubEmittersModule_set_death1_Injectedv() {
err("missing function: _Z73Register_UnityEngine_ParticleSystem_SubEmittersModule_set_death1_Injectedv");
abort(-1)
}
function __Z77Register_UnityEngine_ParticleSystem_SubEmittersModule_get_collision0_Injectedv() {
err("missing function: _Z77Register_UnityEngine_ParticleSystem_SubEmittersModule_get_collision0_Injectedv");
abort(-1)
}
function __Z77Register_UnityEngine_ParticleSystem_SubEmittersModule_get_collision1_Injectedv() {
err("missing function: _Z77Register_UnityEngine_ParticleSystem_SubEmittersModule_get_collision1_Injectedv");
abort(-1)
}
function __Z77Register_UnityEngine_ParticleSystem_SubEmittersModule_set_collision0_Injectedv() {
err("missing function: _Z77Register_UnityEngine_ParticleSystem_SubEmittersModule_set_collision0_Injectedv");
abort(-1)
}
function __Z77Register_UnityEngine_ParticleSystem_SubEmittersModule_set_collision1_Injectedv() {
err("missing function: _Z77Register_UnityEngine_ParticleSystem_SubEmittersModule_set_collision1_Injectedv");
abort(-1)
}
function __ZN6il2cpp2os9Semaphore11GetOSHandleEv() {
err("missing function: _ZN6il2cpp2os9Semaphore11GetOSHandleEv");
abort(-1)
}
-->
<!-- This assembly contains user defined classes. -->
<assembly fullname="Assembly-CSharp" preserve="all"/>
<!--
<type fullname="YourClass.*" preserve="all"/>
-->
</linker>