1
0
mirror of https://github.com/Cardidi/dotween-upm-fork.git synced 2025-12-21 01:36:05 +08:00
Daniele Giardini 2679dd4c25 - Added DOTween Utility Panel option to disable path gizmos
- Removed decimal implementation in Sequences
2015-05-17 22:49:11 +02: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);
}
}