Legacy:LoadWindowStyle
From Spherical
Revision as of 04:21, 18 March 2013 by Flying Jester (talk | contribs) (Created page with "Category:Functions Creates a new WindowStyle object by loading the specified windowstyle file (.rws). ==Usage== ;WindowStyle LoadWindowStyle(filename); * filen...")
Creates a new WindowStyle object by loading the specified windowstyle file (.rws).
Contents
Usage
- WindowStyle LoadWindowStyle(filename);
- filename The rws file to load.
Notes
The rws file should be in the windowstyles subdirectory of your game directory. Example: Sphere/games/mygame/windowstyles/mywindow.rws
Examples
Load a windowstyle and immediately view it on the screen:
var ws = LoadWindowStyle("style.rws");
ws.drawWindow(10, 10, 300, 100); //Position (10, 10) with a width and height of 300x100.
See also
- WindowStyle object
- WindowStyle.drawWindow(x, y, width, height)