UnityEngine.Experimental.Director.AnimatorControllerPlayable.GetInteger C# (CSharp) Method

GetInteger() public method

public GetInteger ( int id ) : int
id int
return int
        public int GetInteger(int id)
        {
            return this.GetIntegerID(id);
        }

Same methods

AnimatorControllerPlayable::GetInteger ( string name ) : int

Usage Example

 static public int GetInteger(IntPtr l)
 {
     try {
         int argc = LuaDLL.lua_gettop(l);
         if (matchType(l, argc, 2, typeof(int)))
         {
             UnityEngine.Experimental.Director.AnimatorControllerPlayable self = (UnityEngine.Experimental.Director.AnimatorControllerPlayable)checkSelf(l);
             System.Int32 a1;
             checkType(l, 2, out a1);
             var ret = self.GetInteger(a1);
             pushValue(l, true);
             pushValue(l, ret);
             return(2);
         }
         else if (matchType(l, argc, 2, typeof(string)))
         {
             UnityEngine.Experimental.Director.AnimatorControllerPlayable self = (UnityEngine.Experimental.Director.AnimatorControllerPlayable)checkSelf(l);
             System.String a1;
             checkType(l, 2, out a1);
             var ret = self.GetInteger(a1);
             pushValue(l, true);
             pushValue(l, ret);
             return(2);
         }
         pushValue(l, false);
         LuaDLL.lua_pushstring(l, "No matched override function to call");
         return(2);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }