Is it possible to draw GUI inside BeginScrollView and BeginHorizontal, but not apply to their coordinates- ignore them.
GUI.BeginScrollView //some scroll view beginning
GUILayout.BeginHorizontal("");
//Draw gui stuff inside here, but don't use their coordinate system.
//Let's say if I'd draw gui button using rect (0,0,10,10), then it should be on screen left upper corner
GUILayout.EndHorizontal();
GUI.EndScrollView();
Any ideas appreciated, thanks.