Skip to content

Instantly share code, notes, and snippets.

@webthingee
Created July 30, 2018 14:22
Show Gist options
  • Save webthingee/033a6846f40f8c60c00cce43b92d13c9 to your computer and use it in GitHub Desktop.
Save webthingee/033a6846f40f8c60c00cce43b92d13c9 to your computer and use it in GitHub Desktop.
Unity Custom Shortcut Key
using UnityEditor;
public class LightingMenuItem
{
[MenuItem("Window/Custom/LightingMenuItem %#l")]
public static void Show()
{
EditorApplication.ExecuteMenuItem("Window/Lighting/Settings");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment