mirror of
https://github.com/Cardidi/dotween-upm-fork.git
synced 2025-12-21 01:36:05 +08:00
12 lines
200 B
C#
12 lines
200 B
C#
using UnityEngine;
|
|
using System.Collections;
|
|
using DG.Tweening;
|
|
|
|
public class TempPro : MonoBehaviour
|
|
{
|
|
void OnMouseDown()
|
|
{
|
|
Debug.Log("DOWN");
|
|
this.GetComponent<DOTweenPath>().DOPlay();
|
|
}
|
|
} |