sf::Texture squaretex;
if (!squaretex.loadFromFile(resourcePath() + "square.gif"))
return EXIT_FAILURE;
sf::Sprite sprsquare;
sprsquare.setTexture(squaretex);
sprsquare.setColor(sf::Color(255, 255, 255, 200));
sprsquare.setPosition(0, 0);
//loads of code here
while (window.isOpen())
{
// Process events
sf::Event event;
while (window.pollEvent(event))
{
// Close window : exit
if (event.type == sf::Event::Closed)
window.close();
// Escape pressed : exit
if (event.type == sf::Event::KeyPressed && event.key.code == sf::Keyboard::Escape)
window.close();
}
if (sf::Keyboard::isKeyPressed(sf::Keyboard::Left)){
sprcircle.move(-1,0);
}
if (sf::Keyboard::isKeyPressed(sf::Keyboard::Right)){
sprcircle.move(1,0);
}
if (sf::Keyboard::isKeyPressed(sf::Keyboard::Up)){
sprcircle.move(0,-1);
}
if (sf::Keyboard::isKeyPressed(sf::Keyboard::Down)){
sprcircle.move(0,1);
}
// Clear screen
window.clear();
// Draw the sprite
window.draw(sprite);
window.draw(sprcircle);
window.draw(sprsquare);
sprsquare.setPosition(32, 0);
window.draw(sprsquare);
// Update the window
window.display();
}
return EXIT_SUCCESS;
}
Well, I guess I tried to do it in the wrong way thenThe problem with that code is that you set the square to position (0, 0) at the beginning of your code and not right before it is drawn. So the first frame will be ok, but for the second frame it will still be on position (32, 0) were you drew your second square. Therefore you only saw one square on the screen.