public vector2 = new vector2(0,0)
void start()
{
scrollPosition = GUILayout.BeginScrollView(scrollPosition, GUILayout.Width(200), GUILayout.Height(200));
GUILayout.Label(Questions = “example”);
GUILayout.EndScrollView();
}
I’m just new in unity3d
How make scrollview at the center? of the screen…
HolBol
2
You need to be using OnGUI(), not Start().