A lightweight Unity Editor script that adds keyboard shortcuts for quickly switching Scene View camera angles and toggling orthographic/perspective mode.
Ideal for speeding up Scene navigation during level design, environment setup, and scene layout.
- Quick access to standard Scene View angles
Top, Bottom, Left, Right, Front, Back - Toggle Orthographic / Perspective view
- Built using Unity’s Shortcut System
- Editor-only (no runtime or build impact)
- Fully configurable via Unity Shortcut Manager
- Alt + ↑ → Top View
- Alt + ↓ → Bottom View
- Alt + ← → Left View
- Alt + → → Right View
- Alt + F → Front View
- Alt + B → Back View
- Alt + O → Toggle Ortho / Perspective
- Copy
SceneViewShortcuts.cs - Place it inside any
Editorfolder in your Unity project - Open Unity and start using the shortcuts
- Uses
UnityEditor.ShortcutManagement - Controls
SceneView.lastActiveSceneView - Camera rotation is applied using predefined
Quaternionvalues - The camera aligns relative to the current Scene View pivot
Free to use, modify, and extend.