Hello, iv got two views, when i use just one its ok. But when i use both it apperars just one...
sf::View tools;
tools.setViewport(sf::FloatRect(0.5f, 0, 0.5f, 1));
tools.setCenter(0, 0);
tools.zoom(0.05f);
sf::View clasic;
clasic.setViewport(sf::FloatRect(0, 0, 1, 1));
clasic.setCenter(0, 0);
-from beginning of main(), and than window.setView(clasic);window.setView(tools);in loop.
in pixel 0, 0, there is rect. shape and it apears just in tools view...
Do you know where is mistake?
Thanks