Raccourci pour quittationner l'éditeur

This commit is contained in:
Mattéo Delabre 2016-04-12 15:19:39 +02:00
parent b374ffde3d
commit ac16798f12
1 changed files with 6 additions and 0 deletions

View File

@ -229,6 +229,12 @@ void Editor::processEvent(const sf::Event& event) {
if (event.key.code == sf::Keyboard::Space) {
test();
}
// touche retour ou échap : on quitte l'éditeur
if (event.key.code == sf::Keyboard::BackSpace ||
event.key.code == sf::Keyboard::Escape) {
getManager().popState();
}
}
}