24 lines
520 B
C#
24 lines
520 B
C#
using System.Collections;
|
||
using System.Collections.Generic;
|
||
using UnityEngine;
|
||
using DG.Tweening;
|
||
|
||
|
||
//显示动画
|
||
public class main_BaseShowPanel : MonoBehaviour
|
||
{
|
||
[Header("父类自动的panel,按需要给")]
|
||
public GameObject _panel;
|
||
public void showPanel(GameObject panel)
|
||
{
|
||
if (panel == null)
|
||
{
|
||
Debug.LogError("panel==null");
|
||
return;
|
||
}
|
||
panel.transform.localScale = new Vector3(0.5f, 0.5f, 0.5f);
|
||
panel.transform.DOScale(1f, 0.8f);
|
||
}
|
||
|
||
}
|