Difference between revisions of "ISKernel:HUD (Command)"
Jump to navigation
Jump to search
Line 4: | Line 4: | ||
== Description == | == Description == | ||
+ | Manipulates elements on the Heads-up Display. | ||
== Examples == | == Examples == | ||
+ | *HUD -list | ||
+ | :Lists all HUD elements | ||
+ | *HUD -fontsize | ||
+ | :Sets the font size for all newly created HUD elements. Default is 12. | ||
+ | *HUD -add FPS 0,0 ${FPS} | ||
+ | :Adds a HUD element named "FPS" at location 0,0 on the screen, with the value of ${FPS}. The value is parsed when the HUD is updated, not right away, so this value automatically updates. | ||
+ | *HUD -remove FPS | ||
+ | :Removes the "FPS" element | ||
== See Also == | == See Also == |
Revision as of 21:45, 23 April 2005
Contents
Syntax
HUD | |
Usage | Intermediate |
Level of Understanding | Intermediate |
Computer Savvy | Intermediate |
Logic | Intermediate |
HUD -list|-fontsize <#>|-remove <name>|-add <name> <#,#> <text>
Description
Manipulates elements on the Heads-up Display.
Examples
- HUD -list
- Lists all HUD elements
- HUD -fontsize
- Sets the font size for all newly created HUD elements. Default is 12.
- HUD -add FPS 0,0 ${FPS}
- Adds a HUD element named "FPS" at location 0,0 on the screen, with the value of ${FPS}. The value is parsed when the HUD is updated, not right away, so this value automatically updates.
- HUD -remove FPS
- Removes the "FPS" element