三国卡牌客户端基础资源仓库
yyl
2026-01-29 9e47a6b1fe2a670f7e034bd096028777b97ef8c8
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(ScaleTween))]
public class ScaleTweenEditor : TweenEditor
{
    public override void OnInspectorGUI()
    {
        base.OnInspectorGUI();
    }
 
}