Files
plugin-library/Assets/06.UIFarme/Editor/Tweening/TweenTransformEditor.cs
2025-09-23 11:18:38 +08:00

10 lines
158 B
C#

#if UNITY_EDITOR
using UnityEngine;
using UnityEditor;
[CustomEditor(typeof(TweenTransform))]
public class TweenTransformEditor : UITweenerEditor
{
}
#endif