Example #1
0
            public static bool Prefix(ScriptFunctionType __instance, ref string asFuncName, ref string asObjName, ref string asStateName, ref string asPropName, ref bool abIsEvent)
            {
                if (string.IsNullOrEmpty(asFuncName))
                {
                    asFuncName = "__Unknown__";
                }

                return(true);
            }
Example #2
0
 public ScriptFunctionAttribute(ScriptFunctionType functionType)
 {
     FunctionType = functionType;
 }