三国卡牌客户端基础资源仓库
hch
2025-09-15 2f4dbeff89808c292e19a0d1d16c1575a92f8aa0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//--------------------------------------------------------
//    [Author]:           玩个游戏
//    [  Date ]:           Wednesday, January 10, 2018
//--------------------------------------------------------
using UnityEditor;
 
[CustomEditor(typeof(RotationTween))]
public class RotationTweenEditor : TweenEditor
{
    public override void OnInspectorGUI()
    {
        base.OnInspectorGUI();
    }
 
}