[change] removed unnecessary field initialization in the HybridCLRSettings class.
parent
82163d2e50
commit
84bf6d59db
|
|
@ -40,7 +40,7 @@ namespace HybridCLR.Editor.Settings
|
||||||
public string[] patchAOTAssemblies;
|
public string[] patchAOTAssemblies;
|
||||||
|
|
||||||
[Tooltip("don't preserve UnityEngine core types in link.xml")]
|
[Tooltip("don't preserve UnityEngine core types in link.xml")]
|
||||||
public bool dontPreserveUnityEngineCoreTypesInLinkXml = false;
|
public bool dontPreserveUnityEngineCoreTypesInLinkXml;
|
||||||
|
|
||||||
[Tooltip("output file of automatic generated link.xml by scanning hot update assemblies")]
|
[Tooltip("output file of automatic generated link.xml by scanning hot update assemblies")]
|
||||||
public string outputLinkFile = "HybridCLRGenerate/link.xml";
|
public string outputLinkFile = "HybridCLRGenerate/link.xml";
|
||||||
|
|
@ -55,9 +55,9 @@ namespace HybridCLR.Editor.Settings
|
||||||
public int maxMethodBridgeGenericIteration = 10;
|
public int maxMethodBridgeGenericIteration = 10;
|
||||||
|
|
||||||
[Tooltip("enable profiler support when publishing in release mode")]
|
[Tooltip("enable profiler support when publishing in release mode")]
|
||||||
public bool enableProfilerInReleaseBuild = false;
|
public bool enableProfilerInReleaseBuild;
|
||||||
|
|
||||||
[Tooltip("enable StraceTrace support when publishing to the WebGL platform in release mode")]
|
[Tooltip("enable StraceTrace support when publishing to the WebGL platform in release mode")]
|
||||||
public bool enableStraceTraceInWebGLReleaseBuild = false;
|
public bool enableStraceTraceInWebGLReleaseBuild;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue