UnityEngine.Motion.ValidateIfRetargetable C# (CSharp) Method

ValidateIfRetargetable() public method

public ValidateIfRetargetable ( bool showWarning ) : bool
showWarning bool
return bool
        public bool ValidateIfRetargetable(bool showWarning)
        {
            AssertNull();
            throw new NotImplementedException();
        }
    }

Usage Example

コード例 #1
0
 static public int ValidateIfRetargetable(IntPtr l)
 {
     try {
         UnityEngine.Motion self = (UnityEngine.Motion)checkSelf(l);
         System.Boolean     a1;
         checkType(l, 2, out a1);
         var ret = self.ValidateIfRetargetable(a1);
         pushValue(l, true);
         pushValue(l, ret);
         return(2);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }