Skip to content

Instantly share code, notes, and snippets.

@moscoquera
Created January 19, 2014 20:03
Show Gist options
  • Save moscoquera/8510256 to your computer and use it in GitHub Desktop.
Save moscoquera/8510256 to your computer and use it in GitHub Desktop.
void OnGUI() {
GUILayout.BeginArea(posPanelCentral.Position, estilo.box);
//puntaje
GUILayout.BeginArea(posGrupoPuntaje.Position, estilo.box);
GUILayout.BeginVertical();
GUILayout.EndVertical();
GUILayout.EndArea();
//nombre
GUILayout.BeginArea(posGrupoNombre.Position, estilo.box);
GUILayout.BeginVertical();
CampoNombre.DrawUsingGUILayout(estilo.textField);
GUILayout.EndVertical();
GUILayout.EndArea();
GUILayout.FlexibleSpace();
GUILayout.EndArea();
W8KeyboardManager.InvokeFirstUpdate(); //pseudo obligatoria
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment