1
0
mirror of https://github.com/Cardidi/dotween-upm-fork.git synced 2025-12-21 01:36:05 +08:00
2015-05-05 13:07:24 +02:00

13 lines
208 B
C#

using UnityEngine;
using System.Collections;
using DG.Tweening;
public class TempPro : MonoBehaviour
{
public DOTweenPath tweenP;
void Start()
{
Debug.Log(tweenP.GetTween().PathGetPoint(0.5f));
}
}