46 lines
1.6 KiB
C#
46 lines
1.6 KiB
C#
using System.Collections;
|
||
using System.Collections.Generic;
|
||
using System.Reflection;
|
||
using UnityEditorInternal;
|
||
using UnityEngine;
|
||
|
||
[CreateAssetMenu(fileName = "HybridCLRGlobalSettings", menuName = "HybridCLR/GlobalSettings")]
|
||
public class HybridCLRGlobalSettings : ScriptableObject
|
||
{
|
||
[Header("开启HybridCLR插件")]
|
||
public bool enable = true;
|
||
|
||
[Header("从gitee clone插件代码")]
|
||
public bool cloneFromGitee = true; // false 则从github上拉取
|
||
|
||
[Header("热更新Assembly Definition Modules")]
|
||
public AssemblyDefinitionAsset[] hotUpdateAssemblyDefinitions;
|
||
|
||
[Header("热更新dlls")]
|
||
public string[] hotUpdateAssemblies;
|
||
|
||
[Header("自动扫描生成的link.xml路径")]
|
||
public string outputLinkFile = "HybridCLR/link.xml";
|
||
|
||
[Header("自动扫描生成的AOTGenericReferences.cs路径")]
|
||
public string outputAOTGenericReferenceFile = "Main/AOTGenericReferences.cs";
|
||
|
||
[Header("AOT泛型实例化搜索迭代次数")]
|
||
public int maxGenericReferenceIteration = 4;
|
||
|
||
[Header("预留MonoPInvokeCallbackAttribute函数个数")]
|
||
public int ReversePInvokeWrapperCount = 10;
|
||
|
||
[Header("MethodBridge泛型搜索迭代次数")]
|
||
public int maxMethodBridgeGenericIteration = 4;
|
||
|
||
[Header("热更新dll输出目录(相对HybridCLRData目录)")]
|
||
public string hotUpdateDllOutputDir = "HotUpdateDlls";
|
||
|
||
[Header("HybridCLRData目录(相对工程目录)")]
|
||
public string hybridCLRDataDir = "HybridCLRData";
|
||
|
||
[Header("裁剪后的AOT assembly输出目录")]
|
||
public string strippedAssemblyDir = "AssembliesPostIl2CppStrip";
|
||
}
|