我是一个菜鸟,我需要知道如何在lua中调用一个函数我会给出示例函数。
local function exampleHD(event)
--Function details and such
end
我怎么称之为“local obj = display.newImageRect(”Random.jpg“,90,60)”
答案 0 :(得分:4)
通过使用其名称(更确切地说,其值存储在具有该名称的变量中)和括号中的参数列表来调用函数(有几种形式允许您跳过括号)。有关详细信息,请参阅Lua手册中的Function Calls。
在您的情况下,您可以将exampleHD
称为exampleHD(event)
。在您显示的第二个代码段中,它是对display.newImageRect
元素中存储的具有三个参数的函数的正确调用。