static public int set_translationAxis(IntPtr l)
 {
     try {
                     #if DEBUG
         var    method     = System.Reflection.MethodBase.GetCurrentMethod();
         string methodName = GetMethodName(method);
                     #if UNITY_5_5_OR_NEWER
         UnityEngine.Profiling.Profiler.BeginSample(methodName);
                     #else
         Profiler.BeginSample(methodName);
                     #endif
                     #endif
         UnityEngine.Animations.PositionConstraint self = (UnityEngine.Animations.PositionConstraint)checkSelf(l);
         UnityEngine.Animations.Axis v;
         v = (UnityEngine.Animations.Axis)LuaDLL.luaL_checkinteger(l, 2);
         self.translationAxis = v;
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
             #if DEBUG
     finally {
                     #if UNITY_5_5_OR_NEWER
         UnityEngine.Profiling.Profiler.EndSample();
                     #else
         Profiler.EndSample();
                     #endif
     }
             #endif
 }
 static public int set_locked(IntPtr l)
 {
     try {
                     #if DEBUG
         var    method     = System.Reflection.MethodBase.GetCurrentMethod();
         string methodName = GetMethodName(method);
                     #if UNITY_5_5_OR_NEWER
         UnityEngine.Profiling.Profiler.BeginSample(methodName);
                     #else
         Profiler.BeginSample(methodName);
                     #endif
                     #endif
         UnityEngine.Animations.PositionConstraint self = (UnityEngine.Animations.PositionConstraint)checkSelf(l);
         bool v;
         checkType(l, 2, out v);
         self.locked = v;
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
             #if DEBUG
     finally {
                     #if UNITY_5_5_OR_NEWER
         UnityEngine.Profiling.Profiler.EndSample();
                     #else
         Profiler.EndSample();
                     #endif
     }
             #endif
 }
 static public int AddSource(IntPtr l)
 {
     try {
                     #if DEBUG
         var    method     = System.Reflection.MethodBase.GetCurrentMethod();
         string methodName = GetMethodName(method);
                     #if UNITY_5_5_OR_NEWER
         UnityEngine.Profiling.Profiler.BeginSample(methodName);
                     #else
         Profiler.BeginSample(methodName);
                     #endif
                     #endif
         UnityEngine.Animations.PositionConstraint self = (UnityEngine.Animations.PositionConstraint)checkSelf(l);
         UnityEngine.Animations.ConstraintSource   a1;
         checkValueType(l, 2, out a1);
         var ret = self.AddSource(a1);
         pushValue(l, true);
         pushValue(l, ret);
         return(2);
     }
     catch (Exception e) {
         return(error(l, e));
     }
             #if DEBUG
     finally {
                     #if UNITY_5_5_OR_NEWER
         UnityEngine.Profiling.Profiler.EndSample();
                     #else
         Profiler.EndSample();
                     #endif
     }
             #endif
 }
Example #4
0
 public void SetSources(List <ConstraintSource> sources)
 {
     if (sources == null)
     {
         throw new ArgumentNullException("sources");
     }
     PositionConstraint.SetSourcesInternal(this, sources);
 }
Example #5
0
 static public int get_sourceCount(IntPtr l)
 {
     try {
         UnityEngine.Animations.PositionConstraint self = (UnityEngine.Animations.PositionConstraint)checkSelf(l);
         pushValue(l, true);
         pushValue(l, self.sourceCount);
         return(2);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
Example #6
0
 static public int get_translationAxis(IntPtr l)
 {
     try {
         UnityEngine.Animations.PositionConstraint self = (UnityEngine.Animations.PositionConstraint)checkSelf(l);
         pushValue(l, true);
         pushEnum(l, (int)self.translationAxis);
         return(2);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
Example #7
0
 static public int GetSources(IntPtr l)
 {
     try {
         UnityEngine.Animations.PositionConstraint self = (UnityEngine.Animations.PositionConstraint)checkSelf(l);
         System.Collections.Generic.List <UnityEngine.Animations.ConstraintSource> a1;
         checkType(l, 2, out a1);
         self.GetSources(a1);
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
Example #8
0
 static public int RemoveSource(IntPtr l)
 {
     try {
         UnityEngine.Animations.PositionConstraint self = (UnityEngine.Animations.PositionConstraint)checkSelf(l);
         System.Int32 a1;
         checkType(l, 2, out a1);
         self.RemoveSource(a1);
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
Example #9
0
 static public int set_locked(IntPtr l)
 {
     try {
         UnityEngine.Animations.PositionConstraint self = (UnityEngine.Animations.PositionConstraint)checkSelf(l);
         bool v;
         checkType(l, 2, out v);
         self.locked = v;
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
Example #10
0
 static public int set_translationAxis(IntPtr l)
 {
     try {
         UnityEngine.Animations.PositionConstraint self = (UnityEngine.Animations.PositionConstraint)checkSelf(l);
         UnityEngine.Animations.Axis v;
         checkEnum(l, 2, out v);
         self.translationAxis = v;
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
Example #11
0
 static public int AddSource(IntPtr l)
 {
     try {
         UnityEngine.Animations.PositionConstraint self = (UnityEngine.Animations.PositionConstraint)checkSelf(l);
         UnityEngine.Animations.ConstraintSource   a1;
         checkValueType(l, 2, out a1);
         var ret = self.AddSource(a1);
         pushValue(l, true);
         pushValue(l, ret);
         return(2);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
Example #12
0
 private PositionConstraint()
 {
     PositionConstraint.Internal_Create(this);
 }
Example #13
0
 private static extern int GetSourceCountInternal([NotNull("ArgumentNullException")] PositionConstraint self);
 private static extern void Internal_Create([Writable] PositionConstraint self);
 private static extern void SetSourcesInternal([NotNull] PositionConstraint self, List <ConstraintSource> sources);
 private static extern int GetSourceCountInternal([NotNull] PositionConstraint self);
Example #17
0
 private static extern void SetSourcesInternal([NotNull("ArgumentNullException")] PositionConstraint self, List <ConstraintSource> sources);