Is there a way you (Gideros dev team) could expose one single custom function to programming. I mean in script you call CallCustomFunction(arg1, arg2)
and in programming you receive function call
GlueFunctionForCallCustomFunctions(Lua state, args[]){ }
Would be great
Comments
We're already developing a plugin system to be used within Gideros. It will expose the current lua_State* to bind your custom functions. You just need to know some basic information about Lua's C API (which I think you already know )
Thank you for the feedback