So, I'm trying to integrate SFML2 views into my game engine. It happens that I found some issues.
First, for what I've understood about views, I draw the objects and then I create Views and draw them, and they will draw the parts of the scene they are focused in. So, is it impossible to draw things differently in different views?
This because I wanted to draw somestuff in different positions depending on the view (in one view they might be at the center, and in another they might be in the left-upper corner). Also, I wanted to not show some stuff on some views and show it only in another.
I've searched and I found no way of doing this.