Skip to content

[case 907908] Fixed GraphVisualizer changing the global style of the labels #2

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 10, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 14 additions & 5 deletions Assets/Editor/GraphVisualizer/PlayableGraphVisualizerWindow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -67,12 +67,21 @@ private PlayableGraphInfo GetSelectedGraphInToolBar(IList<PlayableGraphInfo> gra
return selectedDirector;
}

private void ShowMessage(string msg)
private static void ShowMessage(string msg)
{
GUIStyle centeredStyle = GUI.skin.GetStyle("Label");
centeredStyle.alignment = TextAnchor.UpperCenter;
int width = 15 * msg.Length;
GUI.Label(new Rect(0.5f * (Screen.width - width), 0.5f * (Screen.height - 50), width, 50), msg, centeredStyle);
GUILayout.BeginVertical();
GUILayout.FlexibleSpace();

GUILayout.BeginHorizontal();
GUILayout.FlexibleSpace();

GUILayout.Label(msg);

GUILayout.FlexibleSpace();
GUILayout.EndHorizontal();

GUILayout.FlexibleSpace();
GUILayout.EndVertical();
}

void Update()
Expand Down