1
0
mirror of https://github.com/Cardidi/dotween-upm-fork.git synced 2025-12-20 17:26:03 +08:00
2016-10-26 11:33:05 +02:00

19 lines
386 B
C#

using UnityEngine;
using System.Collections;
using System.Collections.Generic;
using DG.Tweening;
public class TempPro : MonoBehaviour
{
public Transform target;
void Start ()
{
target.DOMoveX(3, 1).OnComplete(TempPro.OnCompleteCallback);
}
public static void OnCompleteCallback()
{
Debug.Log("Hello I'm public! And Static! Love me!");
}
}