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

14 lines
278 B
C#

using UnityEngine;
using System.Collections;
using System.Collections.Generic;
using DG.Tweening;
public class BugsPro : BrainBase
{
void Start()
{
List<Tween> tweens = DOTween.TweensById("SomeId");
Debug.Log(tweens.Count);
foreach (Tween t in tweens) t.Play();
}
}