Skip to content

Instantly share code, notes, and snippets.

@forestrf
Last active July 5, 2023 08:43
Show Gist options
  • Save forestrf/679736990e7be96b047f28acd86f4ef3 to your computer and use it in GitHub Desktop.
Save forestrf/679736990e7be96b047f28acd86f4ef3 to your computer and use it in GitHub Desktop.
Get Unity's Animator window and show it
Type animatorWindowType = Type.GetType("UnityEditor.Graphs.AnimatorControllerTool, UnityEditor.Graphs");
var window = EditorWindow.GetWindow(animatorWindowType);
window.Show();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment