Skip to content

Instantly share code, notes, and snippets.

@atori708
Last active March 9, 2018 16:18
Show Gist options
  • Save atori708/64e13015e4cb8cd06363d978258f9a0e to your computer and use it in GitHub Desktop.
Save atori708/64e13015e4cb8cd06363d978258f9a0e to your computer and use it in GitHub Desktop.
Redo shortcut key for Unity on Windows. You have to put in Editor directory.
using UnityEditor;
public static class RedoShortcutKey {
[MenuItem("Edit/Redo %#Z")]
static void Redo() {
Undo.PerformRedo ();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment