三国卡牌客户端基础资源仓库
hch
2026-05-19 2b58e2ea2fc26e9aa58e960c2bbcde8f564ba0ae
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(PositionTween))]
public class PositionTweenEditor : TweenEditor
{
    public override void OnInspectorGUI()
    {
        base.OnInspectorGUI();
    }
 
}