static public void BeginContents (bool minimalistic)
{
if (!minimalistic)
{
mEndHorizontal = true;
GUILayout.BeginHorizontal();
EditorGUILayout.BeginHorizontal(“AS TextArea”, GUILayout.MinHeight(10f));
}
else
{
mEndHorizontal = false;
EditorGUILayout.BeginHorizontal(GUILayout.MinHeight(10f));
GUILayout.Space(10f);
}
GUILayout.BeginVertical();
GUILayout.Space(2f);
}
compiler error : Unable to find style ‘AS TextArea’ in skin ‘LightSkin’ Repaint
Do anyone ever encounter this compiler error?I was trying to update the Label.text using chinese in NGUI in my script.
Thanks everyone for help