GearBlocks
The GearBlocks Lua scripting API
List of all members
SmashHammer.UI.Windows Class Reference

UI windows. More...

Inheritance diagram for SmashHammer.UI.Windows:
SmashHammer.UI.Showable SmashHammer.UI.IWindows SmashHammer.UI.IShowable

Additional Inherited Members

- Public Member Functions inherited from SmashHammer.UI.Showable
virtual void Show (bool show)
 Show or hide the showable.
 
void Show (bool show)
 Show or hide the showable.
 
IWindow CreateWindow ()
 Create a new UI window.
 
void DestroyWindow (IWindow window)
 Destroy a previously created window.
 
- Properties inherited from SmashHammer.UI.Showable
virtual bool IsShowing [get]
 Is the showable showing?
 
float ScaleFactor [get]
 The size of this showable (and it's contents) is multiplied by this factor to get the actual on screen pixel size.
 
- Properties inherited from SmashHammer.UI.IShowable
bool IsShowing [get]
 Is the showable showing?
 
float ScaleFactor [get]
 The size of this showable (and it's contents) is multiplied by this factor to get the actual on screen pixel size.
 

Detailed Description

UI windows.

Available in Lua via the "Windows" global, for example:

local window = Windows.CreateWindow()
Do something with the window here.
Windows.DestroyWindow( window )
UI windows.
Definition Windows.cs:22