Skip to content

Instantly share code, notes, and snippets.

@atori708
Created March 4, 2018 06:07
Show Gist options
  • Save atori708/507c08131128518c62894df1fadcec6d to your computer and use it in GitHub Desktop.
Save atori708/507c08131128518c62894df1fadcec6d to your computer and use it in GitHub Desktop.
Unity's other Redo shortcut(ctrl+shift+Z) on windows.
using UnityEngine;
using UnityEditor;
public static class MyShortcuts {
[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