1
Graphique / Re : [SFML 2] Sprite::getLoacalBounds does not have a class type
« le: Avril 23, 2012, 04:41:52 pm »
Merci, je savais bien que j'avais un problème aussi bête , je m'y attendais...
Cette section vous permet de consulter les contributions (messages, sujets et fichiers joints) d'un utilisateur. Vous ne pourrez voir que les contributions des zones auxquelles vous avez accès.
bool Objet::Collision(Sprite box1, Sprite box2)
{
if((box2.getLocalBounds.left >= box1.getLocalBoundsleft + box1.getLocalBounds.weight) // trop à droite
|| (box2.getLocalBounds.left + box2.getLocalBounds.width <= box1.getLocalBounds.left) // trop à gauche
|| (box2.getLocalBounds.top >= box1.getLocalBounds.left + box1.getLocalBounds.height) // trop en bas
|| (box2.getLocalBounds.top + box2.getLocalBounds.height <= box1.getLocalBounds.top)) // trop en haut
return false;
else
return true;
}