Difference between revisions of "Develop:LavishGUI 2"

From ISBoxer 2
Jump to: navigation, search
(Created page with "LavishGUI 2 (LGUI2) is a new Graphical User Interface system built into Inner Space, and is used for in-client GUI during gameplay. LGUI2 interfaces are designed in JSO...")
 
 
(One intermediate revision by the same user not shown)
Line 11: Line 11:
 
  }
 
  }
  
 +
LGUI2 interfaces for ISBoxer 2 are usually implemented in a Module's LGUI2 Package file.
  
 
== Tutorials and Guides ==
 
== Tutorials and Guides ==
Line 17: Line 18:
 
== LavishGUI 2 References ==
 
== LavishGUI 2 References ==
 
* [https://www.lavishsoft.com/wiki/index.php/LavishGUI_2 LavishGUI 2 wiki at lavishsoft.com]
 
* [https://www.lavishsoft.com/wiki/index.php/LavishGUI_2 LavishGUI 2 wiki at lavishsoft.com]
 +
 +
{{Module Development}}

Latest revision as of 13:56, 27 May 2019

LavishGUI 2 (LGUI2) is a new Graphical User Interface system built into Inner Space, and is used for in-client GUI during gameplay.

LGUI2 interfaces are designed in JSON format, and are scriptable with LavishScript.

Here is a bare example of a window created in JSON for LGUI2, as shown in our Module creation video
{
 "type":"window",
 "title":"My First Module!",
 "width":300,
 "height":300
}

LGUI2 interfaces for ISBoxer 2 are usually implemented in a Module's LGUI2 Package file.

Tutorials and Guides

Coming soon. :)

LavishGUI 2 References

ISBoxer 2 Module Development