UnityEditor.ShaderUtil.FetchCachedErrors C# (CSharp) Method

FetchCachedErrors() private method

private FetchCachedErrors ( Shader s ) : void
s UnityEngine.Shader
return void
        internal static extern void FetchCachedErrors(Shader s);
        [MethodImpl(MethodImplOptions.InternalCall)]

Usage Example

示例#1
0
        public virtual void OnEnable()
        {
            Shader target = this.target as Shader;

            ShaderUtil.FetchCachedErrors(target);
        }
All Usage Examples Of UnityEditor.ShaderUtil::FetchCachedErrors