mirror of
https://github.com/Cardidi/dotween-upm-fork.git
synced 2025-12-20 09:16:02 +08:00
12 lines
117 B
C#
12 lines
117 B
C#
using UnityEngine;
|
|
using System.Collections;
|
|
|
|
|
|
public enum GoTweenState
|
|
{
|
|
Running,
|
|
Paused,
|
|
Complete,
|
|
Destroyed
|
|
}
|