ActiveTextureManagement.ColorExtensions.component C# (CSharp) 메소드

component() 공개 정적인 메소드

public static component ( this color ) : byte[]
color this
리턴 byte[]
        public static byte[] component(this Color32 color)
        {
            return new byte[4] { color.b, color.g, color.r, color.a };
        }
ColorExtensions