Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ void Start () {
// Get the function object
LuaFunction f = l.GetFunction("luaFunc");

// Call it, takes a variable number of object parameters and attempts to interpet them appropriately
// Call it, takes a variable number of object parameters and attempts to interprete them appropriately
object[] r = f.Call("I called a lua function!");

// Lua functions can have variable returns, so we again store those as a C# object array, and in this case print the first one
Expand Down