1
0
mirror of https://github.com/Cardidi/dotween-upm-fork.git synced 2026-02-04 22:34:56 +08:00
2020-01-17 00:11:15 +09:00

14 lines
243 B
C#

using UnityEngine;
using System.Collections;
using DG.Tweening;
public class SequenceGCAllocations : BrainBase
{
public Transform target;
void Start()
{
// DOTween.Sequence().Append(target.DOMoveX(2, 5));
target.DOMoveX(2, 5);
}
}