You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
690 B
C#
29 lines
690 B
C#
using AV.Inspector.Runtime;
|
|
using D2D.Utils;
|
|
using DG.Tweening.Plugins.Options;
|
|
using UnityEditor;
|
|
using UnityEngine;
|
|
|
|
namespace D2D.Animations
|
|
{
|
|
[CustomEditor(typeof(ScaleAnimation))]
|
|
[CanEditMultipleObjects]
|
|
public class ScaleAnimationEditor : DAnimationEditor
|
|
{
|
|
protected override void ShowAdvancedInfo()
|
|
{
|
|
if (_target == null)
|
|
return;
|
|
|
|
var anim = _target as ScaleAnimation;
|
|
|
|
if (anim == null)
|
|
return;
|
|
|
|
/*if (CoreSettings.Instance.showRareTweenSettings)
|
|
ShowProperty("_isFrom", "Is From");*/
|
|
|
|
base.ShowAdvancedInfo();
|
|
}
|
|
}
|
|
} |