1
0
mirror of https://github.com/Cardidi/dotween-upm-fork.git synced 2025-12-20 09:16:02 +08:00
2020-01-17 00:11:15 +09:00

18 lines
382 B
C#

using System.Collections;
using System.Collections.Generic;
using DG.Tweening;
using UnityEngine;
public class CustomYieldInstructions : BrainBase
{
public Transform target;
IEnumerator Start()
{
yield return new WaitForSeconds(1);
Debug.Log("01");
yield return target.DOMoveX(2, 1).WaitForCompletion(true);
Debug.Log("02");
}
}