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

xlua-使用自定义的lua文件加载器加载lua

[复制链接]
发表于 2021-8-14 12:57 | 显示全部楼层 |阅读模式
  1. using System.Collections;using System.Collections.Generic;using UnityEngine;using XLua;using System.IO;/*
  2. * Author:W
  3. * 自定义Loader加载器,加载指定目录下的lua文件
  4. */publicclassLuaDefineLoader:MonoBehaviour{privateLuaEnv luaEnv;// Start is called before the first frame updatevoidStart(){
  5.         luaEnv =newLuaEnv();//添加自定义的加载器:先从自定义的加载器中加载,如果加载到了lua文件,则直接执行,否则继续使用//内置的加载器寻找加载
  6.         luaEnv.AddLoader(MyLoader);
  7.         luaEnv.DoString("require 'MyLoader'");}/// <summary>/// 自定义Loader/// </summary>/// <param name="filePath"></param>/// <returns></returns>privatebyte[]MyLoader(refstring filePath){string path = Application.streamingAssetsPath +"/"+ filePath +".lua.txt";return System.Text.Encoding.UTF8.GetBytes(File.ReadAllText(path));}privatevoidOnDestroy(){
  8.         luaEnv.Dispose();}}
复制代码


运行结果截图如下:

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

×
懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

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

GMT+8, 2024-11-24 11:26 , Processed in 0.089871 second(s), 26 queries .

Powered by Discuz! X3.5 Licensed

© 2001-2024 Discuz! Team.

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