mirror of
https://github.com/Cardidi/dotween-upm-fork.git
synced 2025-12-20 17:26:03 +08:00
13 lines
208 B
C#
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));
|
|
}
|
|
} |