GUILayout.Spacestatic function Space (pixels : float) : voidDescriptionInsert a space in the current layout group. The direction of the space is dependent on the layout group you're currently in when issuing the command. If in a vertical group, the space will be vertical: Note: This will override the GUILayout.ExpandWidth and GUILayout.ExpandHeight
JavaScript
function OnGUI () { using UnityEngine; import UnityEngine In horizontal groups, the pixels are measured horizontally:
JavaScript
function OnGUI () { using UnityEngine; import UnityEngine |

