Disculpa, error mío al parecer al crear la respuesta me salté dicha información.
Probé con:
Código C++:
Ver originalif(rect.intersects(rect2)){
comprobarIntersecta(rec.getGlobalBounds(),rec2.getGlobalBounds());
}
Y me da este error:
Código:
error: too many arguments to function 'void comprobarIntersecta()'|
-----------------------------------------------------------------------------------------------------------
Probé con:
Código C++:
Ver originalif(rect.intersects(rect2)){
comprobarIntersecta(rect.getGlobalBounds(),rect2.getGlobalBounds());
}
Y me da este error:
Código:
error: 'sf::FloatRect' has no member named 'getGlobalBounds'|
-----------------------------------------------------------------------------------------------------------
Lo que hice es cambiar en esta línea:
Código C++:
Ver originalcomprobarIntersecta(rec.getGlobalBounds(),rec2.getGlobalBounds());
Las variables 'rec', 'rec2' y 'rect', 'rect2'.
Gracias.
Saludos!