SFML community forums

Help => Graphics => Topic started by: darkonaito_ on March 21, 2023, 10:09:59 pm

Title: Drawing a non-homogeneous terrain
Post by: darkonaito_ on March 21, 2023, 10:09:59 pm
How would you go about drawing a terrain made up of different materials, hence different texture? Have a sprite for each tile or have a single sprite and changing both it's position and it's texture multiple times?
Title: Re: Drawing a non-homogeneous terrain
Post by: eXpl0it3r on March 22, 2023, 05:24:23 pm
Depends a bit on how non-homogeneous it should be.

In simple terms, you can draw a tile map, where you have one texture with different materials on it, then you insert the map structure as vertices into a VertexArray and draw that with the different matching texture coordinates.

The tutorial has an simple example for that: https://www.sfml-dev.org/tutorials/2.5/graphics-vertex-array.php#example-tile-map