Hi,
I've been reading the code from the
SFML Game Development bookand i have a small question regarding collision detection with the Node system.
If i have an Entity that inherits from SpriteNode, and the Entity has been transformed in some way
does sfml have any built in functions to check whether something is colliding with the sprite of the Entity?
(Usually i would just get the sprits bounds and then use the Rect class functions to check for collisions, but i obviously cant do that with the system showed in the book, as the sprites own transform isn't related to where its being drawn on the screen anymore :\ )
Or would i need something like a physics library for this?
Thanks