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

ResetTrigger() public method

public ResetTrigger ( int id ) : void
id int
return void
        public void ResetTrigger(int id)
        {
            this.ResetTriggerID(id);
        }

Same methods

AnimatorControllerPlayable::ResetTrigger ( string name ) : void

Usage Example

 static public int ResetTrigger(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);
             self.ResetTrigger(a1);
             pushValue(l, true);
             return(1);
         }
         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);
             self.ResetTrigger(a1);
             pushValue(l, true);
             return(1);
         }
         pushValue(l, false);
         LuaDLL.lua_pushstring(l, "No matched override function to call");
         return(2);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }