L02替换构造函数和析构函数

先写一个C#的带有构造和析构函数的类用以替换

1
2
3
4
5
6
7
8
9
10
11
12
[Hotfix]
public class TestHotFix
{
    public TestHotFix()
    {
        Debug.Log("C#构造函数");
    }
    ~TestHotFix()
    {
        Debug.Log("C#析构函数");
    }
}

固定的lua解析函数.ctor

在lua中用.ctor来代表解析函数

1
2
3
4
5
6
7
8
9
10
xlua.hotfix(CS.TestHotFix, {

    -- 固定lua解析函数 .ctor

    [".ctor"] = function()

       print("Lua构造函数")

    end
}

Read More

L03_替换协程

写一个C#的协程

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[Hotfix]
public class HotFix_Lesson_03 : MonoBehaviour
{
    private void Start()
    {
        LuaManager.Instance.Require("Main");
        StartCoroutine(CsCoroutine());
    }
    IEnumerator CsCoroutine()
    {
        while (true)
        {
            yield return new WaitForSeconds(1f);
            Debug.Log("Csharp的协程");
        }
    }
}

替换步骤

  1. 为类加上特性

Read More