Exemplo n.º 1
0
    IEnumerator IeDoCmdLater <T> (float p_time, ObjCmdArgBase <T> p_objCmd, T p_arg)
    {
        yield return(StartCoroutine(IeWaitForTime(p_time, p_objCmd.delayUnit)));

        p_objCmd.DoCmd(p_arg, 0);
    }
Exemplo n.º 2
0
 static public Coroutine DoCmdLater <T> (float p_time, ObjCmdArgBase <T> p_objCmd, T p_arg)
 {
     return(instance.StartCoroutine(instance.IeDoCmdLater <T>(p_time, p_objCmd, p_arg)));
 }