NLDClient-yudde/ProjectNLD/Assets/Code/Scripts/Framework/UI/UIAnimationNode.cs

16 lines
323 B
C#
Raw Normal View History

2026-01-14 16:48:12 +08:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class UIAnimationNode:MonoBehaviour
{
/// <summary>
/// 背景节点
/// </summary>
public GameObject BGRoot;
/// <summary>
/// 内容节点
/// </summary>
public GameObject ContentRoot;
}