1
0
mirror of https://github.com/Cardidi/dotween-upm-fork.git synced 2025-12-20 17:26:03 +08:00
2015-04-13 14:01:16 +02:00

11 lines
194 B
C#

using UnityEngine;
using System.Collections;
using DG.Tweening;
public class TempPro : MonoBehaviour
{
void Start()
{
transform.DOMove(new Vector3(4,0,0), 1).From(true).SetDelay(1);
}
}