Spine.SkeletonBounds.GetPolygon C# (CSharp) 메소드

GetPolygon() 공개 메소드

public GetPolygon ( BoundingBoxAttachment attachment ) : Polygon
attachment BoundingBoxAttachment
리턴 Polygon
		public Polygon GetPolygon (BoundingBoxAttachment attachment) {
			int index = BoundingBoxes.IndexOf(attachment);
			return index == -1 ? null : Polygons.Items[index];
		}
	}