1
0
mirror of https://github.com/Cardidi/dotween-upm-fork.git synced 2025-12-20 17:26:03 +08:00
2015-03-23 18:24:52 +01:00

15 lines
245 B
C#

using DG.Tweening;
using UnityEngine;
using UnityEngine.UI;
using System.Collections;
public class Temp : BrainBase
{
void Start()
{
Debug.Log("Creating empty sequences");
for (int i = 0; i < 100; ++i) {
DOTween.Sequence();
}
}
}