UnityEditor.SceneView.ComponentHasImageEffectAttribute C# (CSharp) 메소드

ComponentHasImageEffectAttribute() 개인적인 정적인 메소드

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