https://puu.sh/GTq9F/ba65e89211.mp4
thanks in advance
https://puu.sh/GTq9F/ba65e89211.mp4
thanks in advance
Please describe your problem more clearly and show the code you’re using for this UI. I’m not seeing anything obviously wrong in the video.
The text colour disappears In light skin.
Code for banner text:
if (TMPExtensionUtility.UnitySkinIsDark)
{
GUI.color = Color.yellow;
GUILayout.Label("TMP-Searchable : Integration Installer", EditorStyles.boldLabel);
GUI.color = Color.white;
Debug.Log("dark");
}
else
{
GUI.color = Color.yellow;
GUILayout.Label("TMP-Searchable : Integration Installer", EditorStyles.boldLabel);
GUI.color = Color.white;
Debug.Log("light");
}
Code for red Text:
if (Status == "Not - Installed")
{
GUI.contentColor = Color.red;
GUILayout.Label(Status, EditorStyles.textArea, GUILayout.MaxWidth(200)); //red
GUI.contentColor = Color.white;
}