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

xlua-Unity中执行lua代码

[复制链接]
发表于 2021-8-14 11:29 | 显示全部楼层 |阅读模式
  1. using System.Collections;using System.Collections.Generic;using UnityEngine;using XLua;//引入命名空间/*
  2. * Author:W
  3. * 执行Lua代码
  4. *
  5. */publicclassLuaRunTest:MonoBehaviour{privateLuaEnv luaEnv;// Start is called before the first frame updatevoidStart(){//创建lua运行环境实例
  6.         luaEnv =newLuaEnv();//执行lua代码
  7.         luaEnv.DoString("print('Hello Unity!')");}privatevoidOnDestroy(){//释放lua环境实例
  8.         luaEnv.Dispose();}}
复制代码
运行结果截图:

本帖子中包含更多资源

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

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

本版积分规则

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

GMT+8, 2024-11-24 12:03 , Processed in 0.064872 second(s), 23 queries .

Powered by Discuz! X3.5 Licensed

© 2001-2024 Discuz! Team.

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