本文整理汇总了C#中LuaInterface.LuaFunction.call方法的典型用法代码示例。如果您正苦于以下问题:C# LuaFunction.call方法的具体用法?C# LuaFunction.call怎么用?C# LuaFunction.call使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类LuaInterface.LuaFunction
的用法示例。
在下文中一共展示了LuaFunction.call方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: callFunction
/*
* Calls the provided function with the provided parameters
*/
public static object callFunction(LuaFunction function,object[] args,Type[] returnTypes,object[] inArgs,int[] outArgs)
{
// args is the return array of arguments, inArgs is the actual array
// of arguments passed to the function (with in parameters only), outArgs
// has the positions of out parameters
object returnValue;
int iRefArgs;
object[] returnValues=function.call(inArgs,returnTypes);
if(returnTypes[0] == typeof(void))
{
returnValue=null;
iRefArgs=0;
}
else
{
returnValue=returnValues[0];
iRefArgs=1;
}
for(int i=0;i<outArgs.Length;i++)
{
args[outArgs[i]]=returnValues[iRefArgs];
iRefArgs++;
}
return returnValue;
}
示例2: callFunction
public static object callFunction(LuaFunction function, object[] args, Type[] returnTypes, object[] inArgs, int[] outArgs)
{
object obj2;
int num;
object[] objArray = function.call(inArgs, returnTypes);
if (returnTypes[0] == typeof(void))
{
obj2 = null;
num = 0;
}
else
{
obj2 = objArray[0];
num = 1;
}
for (int i = 0; i < outArgs.Length; i++)
{
args[outArgs[i]] = objArray[num];
num++;
}
return obj2;
}