19 lines
282 B
C#
19 lines
282 B
C#
using UnityEngine;
|
|
|
|
public class MyPageCardPanelAnimation : MonoBehaviour
|
|
{
|
|
public enum State
|
|
{
|
|
}
|
|
|
|
private float[] _randomTimer;
|
|
|
|
private int[] _randomDir;
|
|
|
|
private GameObject[] _cardPanel;
|
|
|
|
private UIPanel[] _panel;
|
|
|
|
private Vector3[] _defaultPosition;
|
|
}
|