Beispiel #1
0
 private void play_auto_card(ExampleCard ca)
 {
     if (!ca.autoPlay)
     {
         return;
     }
     StartCoroutine(startPlayinAuto(ca));
 }
Beispiel #2
0
    private IEnumerator startPlayinAuto(ExampleCard ca)
    {
        yield return(new WaitForSeconds(.5f));

        PlayCard(ca);
    }