作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何从另一个lua文件传递变量?我试图将文本变量标题作为文本传递给另一个 b.lua。
a.lua
local options = {
title = "Easy - Addition",
backScene = "scenes.operationMenu",
}
local score_label_2 = display.newText({parent=uiGroup, text=title, font=native.systemFontBold, fontSize=128, align="center"})
最佳答案
有几种方法可以做到这一点,但最直接的是将“a.lua”视为一个模块,然后通过require
将其导入“b.lua”。
例如在
-- a.lua
local options =
{
title = "Easy - Addition",
backScene = "scenes.operationMenu",
}
return options
-- b.lua
local options = require 'a'
local score_label_2 = display.newText
{
parent = uiGroup,
text = options.title,
font = native.systemFontBold,
fontSize = 128,
align = "center"
}
关于variables - 如何从另一个lua文件传递变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41542009/
我是一名优秀的程序员,十分优秀!