private void OnGUI() { EditorGUILayout.LabelField(Content.Title, Styles.Title, GUILayout.ExpandWidth(true)); EditorGUILayoutx.Splitter(); using (new EditorGUILayout.ScrollViewScope(scrollPosition)) { EditorGUILayout.LabelField ( "Created by Keenan Woodall.", Styles.CreditsText ); EditorGUILayout.Space(); if (EditorGUILayoutx.LinkLabel(Content.Twitter)) { Application.OpenURL("https://twitter.com/keenanwoodall"); } if (EditorGUILayoutx.LinkLabel(Content.GitHub)) { Application.OpenURL("https://github.com/keenanwoodall"); } if (EditorGUILayoutx.LinkLabel(Content.Website)) { Application.OpenURL("https://keenanwoodall.com"); } EditorGUILayout.Space(); EditorGUILayout.LabelField ( "Thanks to Thomas Ingram for going the extra mile with editor scripting help.", Styles.CreditsText ); EditorGUILayout.Space(); EditorGUILayout.LabelField ( "Thanks to Alexander Ameye, William Besnard, Raphael Herdlicka and David Carney for beta testing and providing crucial feedback.", Styles.CreditsText ); EditorGUILayout.Space(); EditorGUILayout.LabelField ( "Additional massive thanks to the following contributors for helping develop Deform into the best tool it can be:\nsabresaurus, Brullworfel, favoyang, and HitCache", Styles.CreditsText ); } }
private void OnGUI() { EditorGUILayout.LabelField(Content.Title, Styles.Title, GUILayout.ExpandWidth(true)); EditorGUILayoutx.Splitter(); using (new EditorGUILayout.ScrollViewScope(scrollPosition)) { EditorGUILayout.LabelField ( "Developed by Keenan Woodall.", Styles.CreditsText ); EditorGUILayout.Space(); if (EditorGUILayoutx.LinkLabel(Content.Twitter)) { Application.OpenURL("https://twitter.com/keenanwoodall"); } if (EditorGUILayoutx.LinkLabel(Content.GitHub)) { Application.OpenURL("https://github.com/keenanwoodall"); } if (EditorGUILayoutx.LinkLabel(Content.Website)) { Application.OpenURL("http://keenanwoodall.com"); } EditorGUILayout.Space(); EditorGUILayout.LabelField ( "Thanks to Thomas Ingram for helping with development.", Styles.CreditsText ); EditorGUILayout.Space(); EditorGUILayout.LabelField ( "Thanks to Alexander Ameye, William Besnard, Raphael Herdlicka and David Carney for testing and providing feedback.", Styles.CreditsText ); } }