I have the follwing C function. How should I wrap it so it can be called from a Lua script? typedef struct tagT{
I\'m wondering how to use functions from another script in Lua. For example, say GameObjectUtilities holds functions that many GameObject scripts will use. The Slime (a GameObject) script 开发者_如何学
My problem is that I\'m having trouble specifying paths for Lua to look in. For example, in my script I have a require(\"someScript\") line that works perfectly (it is able to use functions from some
This question already has answers here: What is an undefined reference/unresolved external symbol error and how do I fix it?
I want to use prosody or maybe another xmpp server to test my xmpp bot. I want it to only accept connecti开发者_如何学JAVAon from the address/localhost(don\'t want to configure firewall to block acces
I\'ve made countless attempts to get this working, but everything I do gives me run-time errors. I\'ve been trying to make asset managers to manage content for my game engine, and I\'m using lua and l
I need a tool to parse Lua table expressions. If all else fails, I will eventually just code a small Lua module to convert tables to XML, but for the time being, I am interested in a Ruby library doin
Is is possible to upload a photo to face开发者_如何学JAVAbook using Corona?They just posted a sample that does exactly this.
In order to define a method in C that is callable by Lua it has to match a given signature and use the Lua API to retrieve parameters and return results. I\'m writing a C# wrapper of Lua and I\'m inte
I have a heightmap (a 2D array of floating point values) and I wish to find the highest point on the map, once I have found this point, I want to change its value, and the values of all nearby points.