Files
UltimateFishing/Assets/Scripts/Assembly-CSharp/EMUI_Animations.cs
2026-02-21 16:45:37 +08:00

12 lines
235 B
C#

using UnityEngine;
public class EMUI_Animations : MonoBehaviour
{
public void ToggleFadeIn()
{
Animator component = GetComponent<Animator>();
bool value = !component.GetBool("fadeIn");
component.SetBool("fadeIn", value);
}
}