xLua——配置项目

作者:追风剑情 发布于:2019-1-13 12:12 分类:Lua

一、拷贝下面目录到工程中
Assets\Plugins
Assets\XLua\Resources
Assets\XLua\Src

二、实现GenConfig接口

  1. using System;
  2. using System.Collections;
  3. using System.Collections.Generic;
  4. using UnityEngine;
  5.  
  6. namespace XLua
  7. {
  8. public class GenConfigWrap : GenConfig
  9. {
  10. public List<Type> LuaCallCSharp {
  11. get {
  12. List<Type> list = new List<Type>(){
  13. typeof(Debug)
  14. };
  15. return list;
  16. }
  17. }
  18. public List<Type> CSharpCallLua { get; }
  19. public List<List<string>> BlackList { get; }
  20. }
  21. }


标签: xLua

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号