Quickie
Quickie is a immediate mode GUI implementation for LÖVE.
In the recent versions, Quickie has been renamed to SUIT |
Immediate mode GUIs
In immediate mode GUIs you don't have button-*objects*, slider-*objects* and other-*objects* that are created in one place and used in another place. Rather, all widgets are just functions that put stuff where you want it. In addition, widgets don't keep track of their state (e.g. the slider value) - you have to do it. This approach makes a lot of things easier:
- Want to hide the widget? Simply don't call the function!
- Want to place the widget at a different position, for example above the player's head? Just call the function with different arguments!
- Want to get the value out of a widget? You already have it!
Widgets
Quickie defines several widgets often found in games:
- Buttons,
- Input boxes,
- Sliders,
- Checkbockes, and
- Labels.
If you need more, you can always create new widgets. It's super easy.
Quickie also includes flexible group layout tool.
Links
Other Languages
Dansk –
Deutsch –
English –
Español –
Français –
Indonesia –
Italiano –
Lietuviškai –
Magyar –
Nederlands –
Polski –
Português –
Română –
Slovenský –
Suomi –
Svenska –
Türkçe –
Česky –
Ελληνικά –
Български –
Русский –
Српски –
Українська –
עברית –
ไทย –
日本語 –
正體中文 –
简体中文 –
Tiếng Việt –
한국어
More info