UnityEditor.SceneView.ComponentHasImageEffectAttribute C# (CSharp) Method

ComponentHasImageEffectAttribute() private static method

private static ComponentHasImageEffectAttribute ( Component c ) : bool
c UnityEngine.Component
return bool
        private static bool ComponentHasImageEffectAttribute(Component c)
        {
            if (c == null)
            {
                return false;
            }
            return Attribute.IsDefined(c.GetType(), typeof(ImageEffectAllowedInSceneView));
        }