SFML community forums

Help => General => Topic started by: Nolan on June 15, 2011, 10:45:57 pm

Title: Obstacles
Post by: Nolan on June 15, 2011, 10:45:57 pm
Without using GetPixel (Because it is awfully slow and I don't think I'm getting the right DC to the window), what's the best method to implement obstacles / multiple objects?

Thanks in advance :)
Title: Obstacles
Post by: Groogy on June 15, 2011, 10:50:25 pm
Bounding boxes are pretty common and a simple way. Actually you can do it with SFML without writing any collision detection code yourself.
Here's some info for you: http://tinyurl.com/43he9wf
Title: Obstacles
Post by: David on June 15, 2011, 10:55:14 pm
Quote from: "Groogy"
Bounding boxes are pretty common and a simple way. Actually you can do it with SFML without writing any collision detection code yourself.
Here's some info for you: http://tinyurl.com/43he9wf


That was unecessary :wink:

But seriously, unless you're using irregular shapes, bounding boxes are the way to go