Main Page
From The Official Visionaire Studio: Adventure Game Engine Wiki
Revision as of 21:17, 17 February 2013 by David Stoffel (talk)
Welcome to the (unofficial - for now) Visionaire Studio™ Adventure Game Engine Wiki.
Here you can find the official documentation (in various languages) for Visionaire Studio™, as well as various - user contributed - examples, resources, links, tutorials, lua script snippets & examples via the public section of the wiki; as linked below!
Please consult the User's Guide for information on using the wiki software.
Index List
Official Visionaire Studio™ Documentation
-- script.lua
-- Receives a table, returns the sum of its components.
io.write("The table the script received has:\n");
x = 0
for i = 1, #foo do
print(i, foo[i])
x = x + foo[i]
end
io.write("Returning data back to C\n");
return x