Skip to content

Commit e3ca27f

Browse files
Finished the editor keybinds guide I think
I don't think I really have to add anymore keybinds to the guide.
1 parent 0faf2c4 commit e3ca27f

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

src/main.rs

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2279,6 +2279,24 @@ async fn main() {
22792279
RED,
22802280
&font
22812281
);
2282+
2283+
draw_text_pro(
2284+
"Use Ctrl + D to duplicate objects",
2285+
screen_width() / 2.0 - measure_text_ex("Use Ctrl + D to duplicate objects", 20, &font) / 2.0,
2286+
350.0,
2287+
20,
2288+
RED,
2289+
&font
2290+
);
2291+
2292+
draw_text_pro(
2293+
"Use Alt + D to deselect all objects",
2294+
screen_width() / 2.0 - measure_text_ex("Use Alt + D to deselect all objects", 20, &font) / 2.0,
2295+
400.0,
2296+
20,
2297+
RED,
2298+
&font
2299+
);
22822300
}
22832301
}
22842302

0 commit comments

Comments
 (0)