C#调用Lua函数

作者:追风剑情 发布于:2018-3-7 16:22 分类:Lua

示例

配置CodeGenConfig.cs

22222.jpg


  1. using UnityEngine;
  2. using System;
  3. using System.Collections;
  4. using XLua;
  5.  
  6. public class CSharpCallLuaTest : MonoBehaviour {
  7.  
  8. private string luascript = @"
  9. function LuaGFun1(p1)
  10. print('LuaGFun1()', p1)
  11. end";
  12.  
  13. private LuaEnv luaenv;
  14.  
  15. void Awake()
  16. {
  17. luaenv = new LuaEnv();
  18. }
  19.  
  20. void Start () {
  21. luaenv.DoString(luascript);
  22. Action<string> luaFun = luaenv.Global.GetInPath<Action<string>>("LuaGFun1");
  23. luaFun("this is param1");
  24. }
  25. }


运行测试

11111.jpg

标签: xLua

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号