Search Unity

GUIstyle

Discussion in 'Immediate Mode GUI (IMGUI)' started by lesfundi, Jan 3, 2010.

  1. lesfundi

    lesfundi

    Joined:
    Jan 10, 2009
    Posts:
    628
    i understand GUIskin but not GUIstyle.
    Where can i see some example script with this?
    I want to create custom buttons, that is it.

    I checked out this movie file but screen size it is too small to see it.
    http://vimeo.com/channels/ncsuunity#6067691

    thanks,
    fundi
     
  2. Quietus2

    Quietus2

    Joined:
    Mar 28, 2008
    Posts:
    2,058
    They are quite simple to work with. Simply define it as you would any other variable you expose for the inspector.

    Code (csharp):
    1. var myButtonStyle : GUIStyle;
    Change the attributes as you wish for you new button in the inspector, then reference that style for your button in code where applicable.

    Code (csharp):
    1. GUILayout.Button("Press: ", myButtonStyle );
     
  3. lesfundi

    lesfundi

    Joined:
    Jan 10, 2009
    Posts:
    628
    sorry for my stupid question but how to you define the placement of the button than?
     
  4. Quietus2

    Quietus2

    Joined:
    Mar 28, 2008
    Posts:
    2,058
  5. lesfundi

    lesfundi

    Joined:
    Jan 10, 2009
    Posts:
    628
    THANKS!
     
  6. Jerware

    Jerware

    Joined:
    May 15, 2012
    Posts:
    41
  7. Josh707

    Josh707

    Joined:
    Jul 12, 2012
    Posts:
    71
    Thanks Jerware