Ctrl+S pour sauvegarder dans l'éditeur
This commit is contained in:
parent
f8c87e1f76
commit
b6099e8d75
|
@ -192,6 +192,11 @@ void Editor::processEvent(const sf::Event& event) {
|
|||
clearSelection();
|
||||
}
|
||||
|
||||
// appui sur Ctrl + S : sauvegarde du niveau
|
||||
if (event.key.code == sf::Keyboard::S && event.key.control) {
|
||||
save();
|
||||
}
|
||||
|
||||
// appui sur Ctrl + A : sélection de tous les objets
|
||||
if (event.key.code == sf::Keyboard::A && event.key.control) {
|
||||
selectAll();
|
||||
|
|
Loading…
Reference in New Issue