Exemplo n.º 1
0
    IEnumerator IeDoCmdDefaultLater(float p_time, ObjCmdBase p_objCmd)
    {
        yield return(StartCoroutine(IeWaitForTime(p_time, p_objCmd.delayUnit)));

        p_objCmd.DoCmd(0);
    }
Exemplo n.º 2
0
 static public Coroutine DoCmdDefaultLater(float p_time, ObjCmdBase p_objCmd)
 {
     return(instance.StartCoroutine(instance.IeDoCmdDefaultLater(p_time, p_objCmd)));
 }