https://github.com/samuelasherrivello/raylib-cpp-project-template
Raylib C++ template for new projects.
https://github.com/samuelasherrivello/raylib-cpp-project-template
cpp game-development raylib-cpp template
Last synced: 9 months ago
JSON representation
Raylib C++ template for new projects.
- Host: GitHub
- URL: https://github.com/samuelasherrivello/raylib-cpp-project-template
- Owner: SamuelAsherRivello
- License: mit
- Created: 2024-08-27T16:07:23.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-05T16:52:46.000Z (about 1 year ago)
- Last Synced: 2025-02-07T18:20:11.828Z (10 months ago)
- Topics: cpp, game-development, raylib-cpp, template
- Language: C++
- Homepage: https://www.samuelasherrivello.com/cpp-portfolio/
- Size: 31.3 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README-HOTKEYS.md
Awesome Lists containing this project
README
# Raylib C++ Project Template
### Optional: Add keyboard shortcut
1. [Setup Environment & Build Project](README.md) first
1. **Open Command Palette**
Press `Ctrl + Shift + P` to open the Command Palette.
1. **Access Keybindings Configuration**
Type `Preferences: Open Keyboard Shortcuts (JSON)` in the Command Palette and select it.
1. **Edit Keybindings JSON**
The `keybindings.json` file will open. Add the following code snippet to bind `Ctrl + Alt + Shift + A` (or whatever you like) to your custom terminal command:
```json
{
"key": "ctrl+shift+alt+a",
"command": "workbench.action.tasks.runTask",
"args": "Build and Execute"
},
```
1. **Save the Changes**
Save the `keybindings.json` file.
1. **Test the Shortcut**
Press `Ctrl + Alt + Shift + A` (or whatever you like) in VS Code. The command will execute in the terminal.