Skip to content

Commit

Permalink
update editor playtest controller keybind for 2.2 change
Browse files Browse the repository at this point in the history
  • Loading branch information
Cvolton committed Sep 13, 2024
1 parent ef56b81 commit 224e17a
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/EditorUI.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -104,11 +104,6 @@ struct $modify(EditorUI) {
lel->queueButton(static_cast<int>(PlayerButton::Right), down, true);
}
});
this->defineKeybind("robtop.geometry-dash/pause-level", [this](bool down) {
if(down && !getChildOfType<EditorPauseLayer>(this->getParent(), 0)) {
EditorUI::onPause(nullptr);
};
});
this->defineKeybind("robtop.geometry-dash/build-mode", [this] {
this->passThroughKeyDown(KEY_One);
});
Expand Down Expand Up @@ -470,7 +465,7 @@ struct $modify(EditorUI) {
"robtop.geometry-dash/playtest",
"Playtest",
"Start / Stop Playtesting",
{ Keybind::create(KEY_Enter, Modifier::None), ControllerBind::create(CONTROLLER_Y) },
{ Keybind::create(KEY_Enter, Modifier::None), ControllerBind::create(CONTROLLER_Start) },
Category::EDITOR_UI, false
});
BindManager::get()->registerBindable({
Expand Down

0 comments on commit 224e17a

Please sign in to comment.