xLua——使Lua代码可访问C#代码(静态配置法)

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

以下代码来自xLua demo

  1. /// <summary>
  2. /// 使Lua代码能访问C#代码
  3. /// xLua静态配置(建议把这个类放在Editor目录下)
  4. /// </summary>
  5. public static class CoroutineConfig
  6. {
  7. //在一个静态类里声明一个静态字段
  8. //该字段的类型除BlackList和AdditionalProperties之外只要实现了IEnumerable<Type>就可以了
  9. [LuaCallCSharp]
  10. public static List<Type> LuaCallCSharp
  11. {
  12. get
  13. {
  14. return new List<Type>()
  15. {
  16. typeof(WaitForSeconds),//使Lua代码可访问WaitForSeconds类
  17. typeof(WWW)//使Lua代码可访问WWW类
  18. };
  19. }
  20. }
  21. }

标签: xLua

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号