找回密码
 立即注册
查看: 423|回复: 0

Unity tolua 绑定自定义类

[复制链接]
发表于 2021-11-24 07:54 | 显示全部楼层 |阅读模式
一.首先在CustomSetting中添加需要添加的类

//在这里添加你要导出注册到lua的类型列表public static BindType[] customTypeList ={                    //------------------------为例子导出-----------------------    ...        //自定义类    _GT(typeof(GSUITool)),    _GT(typeof(GSUIData)),    ...}二. 点击Generate All生成wrap文件(/Source/Generate/)同时会自动在Luabinder中注册

三. 修改Luastate载入自定义类

void OpenBaseLibs(){                BeginModule(null);    ...    BeginModule ("gs");    GSUIToolWrap.Register (this);    GSUIDataWrap.Register (this);    EndModule();    EndModule(); //end global    ...}四. 在lua中调用gs.GSUITool
懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Unity开发者联盟 ( 粤ICP备20003399号 )

GMT+8, 2024-11-25 16:05 , Processed in 0.100143 second(s), 25 queries .

Powered by Discuz! X3.5 Licensed

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表