IcticShortcuts adds essential shortcuts to the Unity Editor's File menu to boost productivity and fix common IDE or workflow issues — no tedious clicking required!
-
Domain Reload (
Ctrl + Shift + Alt + D)
Reloads the scripting domain manually. Especially useful for projects using "Enter Play Mode Options" with "Domain Reload" disabled. -
Regenerate Project Files (
Ctrl + Shift + Alt + R)
Forces Unity to regenerate IDE project files. Helps when Rider or Visual Studio integration malfunctions. -
Save Project and Scenes (
Ctrl + Shift + Alt + S)
Saves all open scenes and project files to prevent data loss.
Each action logs a colorful message in the Console for quick feedback!
| Action | Menu Path | Shortcut |
|---|---|---|
| Domain Reload | File → Domain Reload | Ctrl + Shift + Alt + D |
| Regenerate Project Files | File → Regenerate Project Files | Ctrl + Shift + Alt + R |
| Save Project and Scenes | File → Save Project and Scenes | Ctrl + Shift + Alt + S |
- Go to the Releases page.
- Download the latest
IcticShortcuts.unitypackage. - In Unity, open your project and import the package via
Assets → Import Package → Custom Package....
Done! The new shortcuts will now appear under the File menu.
Example Shortcut Code
[MenuItem("File/Domain Reload %#&d")]
public static void ReloadDomain()
{
AssetDatabase.SaveAssets();
EditorUtility.RequestScriptReload();
LogActionDone("Domain reloaded.");
}%= Ctrl (Cmd on Mac)#= Shift&= Altd= D key
- Save time during development.
- Quickly recover broken IDE integration.
- Manually trigger domain reloads when needed.
Suggestions for new shortcuts are welcome!
Feel free to open an issue or submit a pull request.
This project is licensed under the MIT License.
