Const
Gets the IL2CPP module (a native library), that is where the IL2CPP exports will be searched for (see Il2Cpp.exports).
The module is located by its name:
libil2cpp.so
GameAssembly.so
GameAssembly.dll
UnityFramework
GameAssembly.dylib
On iOS and macOS, IL2CPP exports may be located within a module having a different name.
In any case, it is possible to override or set the IL2CPP module name using Il2Cpp.$config.moduleName:
Il2Cpp.$config.moduleName = "CustomName.dylib";Il2Cpp.perform(() => { // ...}); Copy
Il2Cpp.$config.moduleName = "CustomName.dylib";Il2Cpp.perform(() => { // ...});
Gets the IL2CPP module (a native library), that is where the IL2CPP exports will be searched for (see Il2Cpp.exports).
The module is located by its name:
libil2cpp.soGameAssembly.soGameAssembly.dllUnityFrameworkGameAssembly.dylibOn iOS and macOS, IL2CPP exports may be located within a module having a different name.
In any case, it is possible to override or set the IL2CPP module name using Il2Cpp.$config.moduleName: