@davio said in Rounding Error for Object Positions on iPad Pro 11":
1- Set an object's y position to height/2
@Davio you really shouldn't be doing this because there will always be floating point rounding errors like this.
If you really need to check positions like that, I suggest checking for a range of values eg. If y > height / 2 + 2 and If y < height / 2 - 2.