Creation/Dev/Script/Client/GuiShowImgCtrl: Difference between revisions
From Graal Bible
No edit summary |
Pooper200000 (talk | contribs) No edit summary |
||
Line 1: | Line 1: | ||
[[Category:Scripting Reference]] | |||
Inherits [[Creation/Dev/Script/Client/GuiControl|GuiControl]]. | Inherits [[Creation/Dev/Script/Client/GuiControl|GuiControl]]. | ||
Latest revision as of 23:55, 15 February 2010
Inherits GuiControl.
Description
This is basicly a wrapper around TShowImg for displaying all kind of Graal content inside the GUI, including animations (ganis) and particle effects.
Note: like with normal GUI controls the content of this control might be clipped at the control border, so use width and height to resize the control, and offsetx and offsety to shift the content so that animations or particles are not drawn half.
Variables
All variables from TShowImg are available for this control as well. Additional variables:
Name | Type | Description |
offsetx | integer | display offset for 'showimg' inside the control |
offsety | integer | display offset for 'showimg' inside the control |
showimg | object | the actual TShowImg object which contains all the logic |
Example
new GuiShowImgCtrl("Test_ShowImg") { x = 10; y = 10; width = 60; height = 60; ani = "walk"; }