Hello all,
Is it safe to just have one OnGUI function?
function OnGUI()
{
//1st group of GUI
GUI.BeginGroup(Rect(..........
GUI.whatever over here......
GUI.EndGroup();
//2nd Group of GUI
GUI.BeginGroup(Rect(..........
GUI.whatever over here......
GUI.EndGroup();
//3rd Group of GUI
GUI.BeginGroup(Rect(..........
GUI.whatever over here......
GUI.EndGroup();
Also, I’m trying to smooth move a group by changing the groups Rect when a button is pressed, can I used .deltaTime to move the GUI groups somewhat slowy.?
Thanks,
Ray