I just want to see all the text. How?
void OnGUI ()
{
PlayerPrefs.SetFloat("Controls Screen Height Portion",
EditorGUILayout.FloatField("Screen Height Portion",
PlayerPrefs.GetFloat("Controls Screen Height Portion"),
GUILayout.ExpandWidth(false)
)
);
PlayerPrefs.SetFloat("Control Button Screen Width Portion",
EditorGUILayout.FloatField("Button Screen Width Portion",
PlayerPrefs.GetFloat("Control Button Screen Width Portion"),
GUILayout.ExpandWidth(false)
)
);
}
