FairyGUI.MovieClip.SetPlaySettings C# (CSharp) Method

SetPlaySettings() public method

public SetPlaySettings ( ) : void
return void
        public void SetPlaySettings()
        {
            SetPlaySettings(0, -1, 0, -1);
        }

Same methods

MovieClip::SetPlaySettings ( int start, int end, int times, int endAt ) : void

Usage Example

示例#1
0
 static public int SetPlaySettings(IntPtr l)
 {
     try {
         int argc = LuaDLL.lua_gettop(l);
         if (argc == 1)
         {
             FairyGUI.MovieClip self = (FairyGUI.MovieClip)checkSelf(l);
             self.SetPlaySettings();
             pushValue(l, true);
             return(1);
         }
         else if (argc == 5)
         {
             FairyGUI.MovieClip self = (FairyGUI.MovieClip)checkSelf(l);
             System.Int32       a1;
             checkType(l, 2, out a1);
             System.Int32 a2;
             checkType(l, 3, out a2);
             System.Int32 a3;
             checkType(l, 4, out a3);
             System.Int32 a4;
             checkType(l, 5, out a4);
             self.SetPlaySettings(a1, a2, a3, a4);
             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));
     }
 }