setOnBeginHandler() 공개 메소드

public setOnBeginHandler ( Action onBegin ) : void
onBegin Action
리턴 void
예제 #1
0
 static public int setOnBeginHandler(IntPtr l)
 {
     try {
         AbstractGoTween self = (AbstractGoTween)checkSelf(l);
         System.Action <AbstractGoTween> a1;
         LuaDelegation.checkDelegate(l, 2, out a1);
         self.setOnBeginHandler(a1);
         return(0);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }