@@ -388,14 +388,17 @@ struct $modify(EditorUI) {
388
388
" robtop.geometry-dash/undo" ,
389
389
" Undo" ,
390
390
" Undo Last Action" ,
391
- { Keybind::create (KEY_Z, Modifier::PlatformControl ) },
391
+ { Keybind::create (KEY_Z, Modifier::Control), GEODE_MACOS ( Keybind::create (KEY_Z, Modifier::Command) ) },
392
392
Category::EDITOR_MODIFY, true
393
393
});
394
394
BindManager::get ()->registerBindable ({
395
395
" robtop.geometry-dash/redo" ,
396
396
" Redo" ,
397
397
" Redo Last Action" ,
398
- { Keybind::create (KEY_Z, Modifier::PlatformControl | Modifier::Shift) },
398
+ {
399
+ Keybind::create (KEY_Z, Modifier::Control | Modifier::Shift),
400
+ GEODE_MACOS (Keybind::create (KEY_Z, Modifier::Command | Modifier::Shift))
401
+ },
399
402
Category::EDITOR_MODIFY, true
400
403
});
401
404
BindManager::get ()->registerBindable ({
@@ -409,21 +412,21 @@ struct $modify(EditorUI) {
409
412
" robtop.geometry-dash/copy" ,
410
413
" Copy" ,
411
414
" Copy Selected Objects" ,
412
- { Keybind::create (KEY_C, Modifier::PlatformControl ) },
415
+ { Keybind::create (KEY_C, Modifier::Control), GEODE_MACOS ( Keybind::create (KEY_C, Modifier::Command) ) },
413
416
Category::EDITOR_MODIFY, false
414
417
});
415
418
BindManager::get ()->registerBindable ({
416
419
" robtop.geometry-dash/paste" ,
417
420
" Paste" ,
418
421
" Paste Selected Objects" ,
419
- { Keybind::create (KEY_V, Modifier::PlatformControl ) },
422
+ { Keybind::create (KEY_V, Modifier::Control), GEODE_MACOS ( Keybind::create (KEY_V, Modifier::Command) ) },
420
423
Category::EDITOR_MODIFY, true
421
424
});
422
425
BindManager::get ()->registerBindable ({
423
426
" robtop.geometry-dash/copy-paste" ,
424
427
" Copy + Paste" ,
425
428
" Duplicate Selected Objects" ,
426
- { Keybind::create (KEY_D, Modifier::PlatformControl ) },
429
+ { Keybind::create (KEY_D, Modifier::Control), GEODE_MACOS ( Keybind::create (KEY_D, Modifier::Command) ) },
427
430
Category::EDITOR_MODIFY, true
428
431
});
429
432
BindManager::get ()->registerBindable ({
@@ -437,7 +440,7 @@ struct $modify(EditorUI) {
437
440
" robtop.geometry-dash/toggle-transform" ,
438
441
" Transform" ,
439
442
" Toggle Transform Control" ,
440
- { Keybind::create (KEY_T, Modifier::PlatformControl ) },
443
+ { Keybind::create (KEY_T, Modifier::Control), GEODE_MACOS ( Keybind::create (KEY_T, Modifier::Command) ) },
441
444
Category::EDITOR_UI, false
442
445
});
443
446
BindManager::get ()->registerBindable ({
@@ -472,7 +475,7 @@ struct $modify(EditorUI) {
472
475
" robtop.geometry-dash/playback-music" ,
473
476
" Playback Music" ,
474
477
" Start / Stop Playing the Level's Music" ,
475
- { Keybind::create (KEY_Enter, Modifier::PlatformControl ) },
478
+ { Keybind::create (KEY_Enter, Modifier::Control), GEODE_MACOS ( Keybind::create (KEY_Enter, Modifier::Command) ) },
476
479
Category::EDITOR_UI, false
477
480
});
478
481
BindManager::get ()->registerBindable ({
@@ -642,7 +645,10 @@ struct $modify(EditorUI) {
642
645
" Save Editor Position " + x,
643
646
" Save the current editor camera position in the slot " + x + " . "
644
647
" You can reload this slot back with Load Editor Position " + x,
645
- { Keybind::create (static_cast <enumKeyCodes>(KEY_Zero + i), Modifier::PlatformControl) },
648
+ {
649
+ Keybind::create (static_cast <enumKeyCodes>(KEY_Zero + i), Modifier::Control),
650
+ GEODE_MACOS (Keybind::create (static_cast <enumKeyCodes>(KEY_Zero + i), Modifier::Command))
651
+ },
646
652
Category::EDITOR_UI, false
647
653
});
648
654
BindManager::get ()->registerBindable ({
0 commit comments