Hi, I would like to get simply the y coord of a shape, but when I try do this it only gets the y distance from it's origin. I don't want this. I want to get the y coord of the whole 600x600 window (with 0, 0 at top left) but using setOrigin. Sorry if my English was a bit bad.
shape.setOrigin(-50, -400);
...
int shapepos_y = shape.getPosition().y ; // when the shape moves up 50 for example, it only returns -50, but I need it -350
std::cout<<"shapepos_y =" << shapepos_y;