UnityEditor.MaterialEditor.BeginAnimatedCheck C# (CSharp) Method

BeginAnimatedCheck() public method

public BeginAnimatedCheck ( MaterialProperty prop ) : void
prop MaterialProperty
return void
        public void BeginAnimatedCheck(MaterialProperty prop)
        {
            if (this.m_RendererForAnimationMode != null)
            {
                this.m_PreviousGUIColor = GUI.color;
                if (MaterialAnimationUtility.IsAnimated(prop, this.m_RendererForAnimationMode))
                {
                    GUI.color = AnimationMode.animatedPropertyColor;
                }
            }
        }
MaterialEditor