mirror of
https://github.com/Cardidi/dotween-upm-fork.git
synced 2025-12-21 01:36:05 +08:00
14 lines
278 B
C#
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();
|
|
}
|
|
} |