Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I know this is a topic that has been covered a lot, and I'm aware of the different methods of tackling 2d tile blending. The two predominant ways appear to be alpha masking (which seems expensive) or creating graphics for each transition, as following this popular tutorial.

http://tinyurl.com/7hya4zy

I'm a newish game programmer, so this is really a question from lack of experience, but really what are your tips to go about blending terrain efficiently. My first concern is that my game uses 128x128px tiles (something I want to keep), and the tutorial suggests I'd need 32 tiles per texture to cover all transitions. The troubles is with 16 tiles in a row at 128px that's 2048 pixels wide, so double that for all 32, then start adding in all the other terrain and texture that will come, big sprite sprites, big files, going to hurt game performance etc.

At the moment I think my best approach would be to have the bare minimum transition tiles in the actual sprite sheet, such as only a single corner piece, which can then be rotated in game (presumably before render then cached and used every render call) and drawn.

Either way, I'm no expert, so any general tips from you people who understand/have done this before would be very much appreciated, it's just stuff I need to learn!

Many thanks,

Daniel

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.