wuxianshengcong/Assets/Scripts/Panel.cs
2024-12-30 10:39:09 +08:00

21 lines
371 B
C#

using DG.Tweening;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class PanelItem : Anim
{
public GameObject Item;
// Start is called before the first frame update
void Start()
{
ShowPanel(Item);
}
// Update is called once per frame
void Update()
{
}
}