xLua——动态热更

作者:追风剑情 发布于:2017-7-17 21:43 分类:Lua

参考 https://github.com/Tencent/xLua/blob/master/Assets/XLua/Doc/hotfix.md

以下代码来自xLua demo

  1. using UnityEngine;
  2. using System.Collections;
  3. using XLua;
  4.  
  5. [Hotfix]
  6. public class HotfixTest : MonoBehaviour {
  7. LuaEnv luaenv = new LuaEnv();
  8.  
  9. public int tick = 0; //如果是private的,在lua设置xlua.private_accessible(CS.HotfixTest)后即可访问
  10.  
  11. // Use this for initialization
  12. void Start () {
  13. }
  14.  
  15. // Update is called once per frame
  16. void Update () {
  17. if (++tick % 50 == 0)
  18. {
  19. Debug.Log(">>>>>>>>Update in C#, tick = " + tick);
  20. }
  21. }
  22.  
  23. void OnGUI()
  24. {
  25. if (GUI.Button(new Rect(10, 100, 300, 150), "Hotfix"))
  26. {
  27. luaenv.DoString(@"
  28. xlua.hotfix(CS.HotfixTest, 'Update', function(self)
  29. self.tick = self.tick + 1
  30. if (self.tick % 50) == 0 then
  31. print('<<<<<<<<Update in lua, tick = ' .. self.tick)
  32. end
  33. end)
  34. ");
  35. }
  36. }
  37. }

运行测试

11111.png

标签: xLua

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号