Created
July 30, 2018 14:22
-
-
Save webthingee/033a6846f40f8c60c00cce43b92d13c9 to your computer and use it in GitHub Desktop.
Unity Custom Shortcut Key
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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