我正在尝试为我的对象获得正确的顶部和底部位置。我正在使用recttransform的宽度和高度。
object.GetComponent<RectTransform>().position.y + r.rect.height / 2; //top
object.GetComponent<RectTransform>().position.y - r.rect.height / 2; //bottom
结果 This is What i get i try to drawline positions in x-axis (red and black lines)
为什么会这样?我该怎么做才能获得正确的职位?