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

14 lines
205 B
C#

using UnityEngine;
using System.Collections;
using DG.Tweening;
public class TempPro : MonoBehaviour
{
public Transform target;
public Vector3[] path;
void Start()
{
target.DOPath(path, 4);
}
}