lua中c#变量传入和lua之间的回调
C#
using UnityEngine;
using System.Collections;
using XLua;
using System;
using System.IO;
public class star_coroutine : MonoBehaviour
{
//public static star_coroutine Instance
//{
//get;
//private set;
//}
public TextAsset luaScript;
LuaEnv lua = null;
private LuaTable scriptEnv;
public Injection[] injections;
private Action luaStart;
// Use this for initializationvoid Awake()
{
lua = new LuaEnv();
scriptEnv = lua.NewTable();
LuaTable meta = lua.NewTable();
meta.Set("__index", lua.Global);
scriptEnv.SetMetaTable(meta);
meta.Dispose();
scriptEnv.Set("self", this);
scriptEnv.Set("offset", transform.Find("offset"));
//lua.DoString("require 'uiset'");
lua.DoString(luaScript.text, "star_coroutine", scriptEnv);
scriptEnv.Get("Start", out luaStart);
}
void Start () {
if (luaStart != null)
{
luaStart();
}
}void Update()
{
if (lua != null)
{
lua.Tick();
}
}void OnDestroy()
{
//lua.Dispose();
scriptEnv.Dispose();
}
}
Lua
lua_Tool
return
{
UIeven = function(tr,call)
if tr ~= nil and call ~= nil then
call(tr)
print("tr is" .. tr.name)
end
end
}
uiset
local UIevent=(require 'lua_Tool').UIeven
local CallBack=function (tr)
tr.gameObject:SetActive(false)
print("tr is false"..tr.name)
end
print("offset.name"..offset.name) function Start()
UIevent(self.transform,CallBack)
end
【lua中c#变量传入和lua之间的回调】注意的是在DoString中使用require 'uiset' 相当于加载一个新lua脚本,在DoString里面会导致scriptEnv失效
推荐阅读
- 热闹中的孤独
- Shell-Bash变量与运算符
- JS中的各种宽高度定义及其应用
- 2021-02-17|2021-02-17 小儿按摩膻中穴-舒缓咳嗽
- 深入理解Go之generate
- 异地恋中,逐渐适应一个人到底意味着什么()
- 我眼中的佛系经纪人
- 《魔法科高中的劣等生》第26卷(Invasion篇)发售
- “成长”读书社群招募
- 2020-04-07vue中Axios的封装和API接口的管理