For a long time, I have been using static tilemaps, where I only once create and fill my vertexarray with tile information, by using sf::Quads, but say I want to add/remove certain tiles now and then, do I throw away the old array and refills a new? Or should I just append to the vertexarray?
I guess rebuilding the vertexarray often, is not so optimal?