zwcloud / ImGui

Immediate Mode GUI for C#
https://zwcloud.net/#project/imgui
GNU Affero General Public License v3.0
197 stars 21 forks source link

Colored labels are not colored. #54

Open zwcloud opened 4 years ago

zwcloud commented 4 years ago
GUILayout.Label(new Color(1.0f, 0.0f, 1.0f, 1.0f), "Pink");
GUILayout.Label(new Color(1.0f, 1.0f, 0.0f, 1.0f), "Yellow");
GUILayout.LabelDisabled("Disabled");

image

Text color is not applied.