function OnGUI()

 {

    GUI.Label(Rect(1,1,100,20),"I'm a Label"); //1

    GUI.Box(Rect(1,21,100,20),"I'm a Box"); //2

    GUI.Button(Rect(1,41,100,20),"I'm a Button"); //3

    GUI.RepeatButton(Rect(1,61,120,20),"I'm a RepeatButton"); //4

    GUI.TextField(Rect(1,81,100,20),"I'm a TextFielld"); //5

    GUI.TextArea(Rect(1,101,100,40),"I'm a TextArea,\nMultiline"); //6

    GUI.Toggle(Rect(1,141,120,20),true,"I'm a Toggle true"); //7

    GUI.Toggle(Rect(1,161,120,20),false,"I'm a Toggle false"); //8

    GUI.Toolbar(Rect(1,181,160,20),-1,["Toolbar","Tool2","Tool3"]); //9

    GUI.SelectionGrid(Rect(1,201,190,20),2,["Selection","Grid","select3"],3); //10

    GUI.HorizontalSlider(Rect(1,221,180,20),3.0,0,10.0); //11

    GUI.VerticalScrollbar(Rect(1,241,20,100),3.0,1,0.0,10.0); //12

    GUI.BeginScrollView (Rect (200,10,100,100),Vector2.zero, Rect (0, 0, 220, 200));

    GUI.Label(Rect(0,0,100,20),"I'm a Label");

    GUI.EndScrollView();

    GUI.Window(0,Rect(200,129,100,100),funcwin,"window");

}

function funcwin(windowID:int)

{

  GUI.DragWindow(Rect(0,0,10000,2000));

 }

相关文章:

  • 2021-11-14
  • 2022-02-14
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-02
  • 2021-11-21
  • 2022-02-07
猜你喜欢
  • 2021-09-02
  • 2022-12-23
  • 2021-12-14
  • 2022-12-23
  • 2022-12-23
  • 2021-10-20
相关资源
相似解决方案