Collision2D.getBitArray C# (CSharp) 메소드

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

private static getBitArray ( Bounds2D, section, Texture2D texture ) : Color[]
section Bounds2D,
texture UnityEngine.Texture2D
리턴 Color[]
    private static Color[] getBitArray(Bounds2D section, Texture2D texture)
    {
        return texture.GetPixels(section.x, section.y, section.width,section.height);
    }