Modding Help [SOLVED] GUI Text Input Type?

Discussion in 'Starbound Modding' started by YounYokel, Jun 17, 2019.

  1. YounYokel

    YounYokel Space Spelunker

    Hello. Is there a way I can put text input in my object's GUI?

    Like this:

    upload_2019-6-18_4-14-19.png
     
  2. projectmayhem

    projectmayhem Spaceman Spiff

    Pretty sure there is. Frackin Universe has GUI's that let you search for items in connected storage units
     
    YounYokel likes this.
  3. YounYokel

    YounYokel Space Spelunker

    Yes, I found it. Actually I don't really know the functions names or whatever it called but it look like this:
    Code:
    {
        "gui" : {
            "lblText" : {
                "type" : "textbox",
                "position" : [70, 78],
                "hint" : "Enter new name..."
                "enterKey" : "ok",
                "escapeKey" : "close",
                "maxWidth" : 125,
           }
       }
    }
    
     

Share This Page