升级HybridCLR 1.1.20

升级HybridCLR 1.1.20
This commit is contained in:
ALEXTANG
2023-02-10 12:06:15 +08:00
parent f1bd8e4a5f
commit 1edbfcc086
75 changed files with 1683 additions and 404 deletions

View File

@@ -1,6 +1,7 @@
using System.Collections;
using System.Collections.Generic;
using TEngine.Runtime;
using UnityEngine;
namespace HotFix
{
@@ -8,12 +9,16 @@ namespace HotFix
{
public static void Start()
{
Log.Debug("HotFix.GameHotfixEntry");
Log.Fatal("HotFix.GameHotfixEntry");
Log.Fatal("=======看到此条日志代表你成功运行了示例项目的热更新代码=======");
MonoUtility.AddUpdateListener(Update);
TResources.Load<GameObject>("Test/Cube.prefab");
}
void Update()
private static void Update()
{
}
}
}