Skip to content

Commit

Permalink
forgot to remove the bind registrations aswell
Browse files Browse the repository at this point in the history
  • Loading branch information
HJfod committed Feb 6, 2024
1 parent f25435d commit 67230a5
Showing 1 changed file with 0 additions and 56 deletions.
56 changes: 0 additions & 56 deletions src/EditorUI.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -573,60 +573,4 @@ struct $modify(EditorUI) {
{ Keybind::create(KEY_S, Modifier::Shift) },
Category::EDITOR_MOVE, true
});
BindManager::get()->registerBindable({
"robtop.geometry-dash/move-obj-half-left",
"Move Object Half Left",
"Move Selected Object(s) half of a Block left (15 Units)",
{Keybind::create(KEY_A, Modifier::Control | Modifier::Alt)},
Category::EDITOR_MOVE, true
});
BindManager::get()->registerBindable({
"robtop.geometry-dash/move-obj-half-right",
"Move Object Half Right",
"Move Selected Object(s) half of a Block right (15 Units)",
{Keybind::create(KEY_D, Modifier::Control | Modifier::Alt)},
Category::EDITOR_MOVE, true
});
BindManager::get()->registerBindable({
"robtop.geometry-dash/move-obj-half-up",
"Move Object Half Up",
"Move Selected Object(s) half of a Block up (15 Units)",
{Keybind::create(KEY_W, Modifier::Control | Modifier::Alt)},
Category::EDITOR_MOVE, true
});
BindManager::get()->registerBindable({
"robtop.geometry-dash/move-obj-half-down",
"Move Object Half Down",
"Move Selected Object(s) half of a Block down (15 Units)",
{Keybind::create(KEY_S, Modifier::Control | Modifier::Alt)},
Category::EDITOR_MOVE, true
});
BindManager::get()->registerBindable({
"robtop.geometry-dash/move-obj-big-left",
"Move Object Big Left",
"Move Selected Object(s) 5 Blocks left (150 Units)",
{},
Category::EDITOR_MOVE, true
});
BindManager::get()->registerBindable({
"robtop.geometry-dash/move-obj-big-right",
"Move Object Big Right",
"Move Selected Object(s) 5 Blocks right (150 Units)",
{},
Category::EDITOR_MOVE, true
});
BindManager::get()->registerBindable({
"robtop.geometry-dash/move-obj-big-up",
"Move Object Big Up",
"Move Selected Object(s) 5 Blocks up (150 Units)",
{},
Category::EDITOR_MOVE, true
});
BindManager::get()->registerBindable({
"robtop.geometry-dash/move-obj-big-down",
"Move Object Big Down",
"Move Selected Object(s) 5 Blocks down (150 Units)",
{},
Category::EDITOR_MOVE, true
});
}

0 comments on commit 67230a5

Please sign in to comment.