parent
b9ea9b21f3
commit
c85adbe65b
|
@ -18,7 +18,7 @@ namespace HybridCLR.Editor.Commands
|
||||||
var options = new Il2CppDef.Il2CppDefGenerator.Options()
|
var options = new Il2CppDef.Il2CppDefGenerator.Options()
|
||||||
{
|
{
|
||||||
UnityVersion = UnityEngine.Application.unityVersion,
|
UnityVersion = UnityEngine.Application.unityVersion,
|
||||||
OutputFile = $"{SettingsUtil.LocalIl2CppDir}/libil2cpp/hybridclr/Il2CppCompatibleDef.h",
|
OutputFile = $"{SettingsUtil.LocalIl2CppDir}/libil2cpp/il2cpp-config.h",
|
||||||
};
|
};
|
||||||
|
|
||||||
var g = new Il2CppDef.Il2CppDefGenerator(options);
|
var g = new Il2CppDef.Il2CppDefGenerator(options);
|
||||||
|
|
|
@ -50,7 +50,7 @@ namespace HybridCLR.Editor.Il2CppDef
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
frr.Replace("UNITY_CONFIG", string.Join("\n", lines));
|
frr.Replace("UNITY_VERSION", string.Join("\n", lines));
|
||||||
|
|
||||||
frr.Commit(_options.OutputFile);
|
frr.Commit(_options.OutputFile);
|
||||||
Debug.Log($"[HybridCLR.Editor.Il2CppDef.Generator] output:{_options.OutputFile}");
|
Debug.Log($"[HybridCLR.Editor.Il2CppDef.Generator] output:{_options.OutputFile}");
|
||||||
|
|
|
@ -5,7 +5,7 @@ using System.Threading.Tasks;
|
||||||
|
|
||||||
namespace HybridCLR.Runtime
|
namespace HybridCLR.Runtime
|
||||||
{
|
{
|
||||||
[AttributeUsage(AttributeTargets.Method)]
|
[AttributeUsage(AttributeTargets.Method | AttributeTargets.Struct)]
|
||||||
public class UnchangedAttribute : Attribute
|
public class UnchangedAttribute : Attribute
|
||||||
{
|
{
|
||||||
public bool Unchanged { get; }
|
public bool Unchanged { get; }
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "com.focus-creative-games.hybridclr_unity",
|
"name": "com.focus-creative-games.hybridclr_unity",
|
||||||
"version": "0.10.5",
|
"version": "0.11.0",
|
||||||
"displayName": "HybridCLR",
|
"displayName": "HybridCLR",
|
||||||
"description": "Unity package for HybridCLR. It includes editor and runtime scripts and assets for HybridCLR",
|
"description": "Unity package for HybridCLR. It includes editor and runtime scripts and assets for HybridCLR",
|
||||||
"category": "Runtime",
|
"category": "Runtime",
|
||||||
|
|
Loading…
Reference in New Issue