Created
January 19, 2014 20:03
-
-
Save moscoquera/8510256 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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