
Related posts
Comments are closed.
Create intelligent augmented reality experiences that fully integrate with the real world.
Learn moreCreate ultra-realistic worlds using AI-assisted artistry to accelerate your workflow.
Learn moreLicensing solution for offloading Unity project builds to network hardware.
Learn more
7 replies on “Unity Hotkeys – keyboard shortcuts in Unity”
[…] Unity HotKeys […]
@Ashkan
Is any way to set a hotkey to view? For example press f to set view to front in scenewindow.
[…] Hier geht es zu den Unity-Shortcuts. […]
Nice cheat! have it printed out and affixed to wall. suggestion: you forgot Surface snap Shift-Cmd-LMB and should differentiate from Unit Snap! Thanks
@ unitor
Nice question ;)
@ Will Goldstone
Good news
@unitor
Yes we are working on a large list of tutorials that is coming soon.
@DanJ
some of the keys are modifiable in Edit/Preferences in Keys tab of the preferences window.
for others you should write simple editor script menus which have your hotkey. then in the menu’s function just execute the menu you want
for example do this in js
@MenuItem(“HotKey/Build%g”)
static function DoIt()
{
EditorApplication.ExecuteMenuItem(“File/Build”);
}
now with ctrl+g (%g) you can execute the build command. the drawback is that you’ll see the hotkey menu in your menu bar but maybe there is another way to do this that i forgot. for more information about assigning shortkeys to menus see the [MenuItem] in Editor classes of the scripting reference.
hope this helps
is there a way of customising hotkeys? such as photoshop etc…
nice:)
are you guys working on any more cool tutorials ?