au3Irr2 Function Reference
_IrrDrawGUIThis renders the 2D graphical user interface that has been created to the scene.
#Include <au3Irrlicht2.au3>
_IrrDrawGUI()
Parameters
None. | |
Return Value
Success: TrueFailure: False
Remarks
None
Related
_IrrBeginScene, _IrrBeginSceneAdvanced, _IrrDrawScene, _IrrEndScene
Example
#include "au3Irrlicht2.au3"
_IrrStart( $IRR_EDT_OPENGL, 800, 600, $IRR_BITS_PER_PIXEL_32, _
$IRR_WINDOWED, $IRR_SHADOWS, $IRR_CAPTURE_EVENTS, $IRR_VERTICAL_SYNC_ON )
_IrrAddStaticText( "Hello AU3-World ;-)", 8, 8, 200, 20, $IRR_GUI_NO_BORDER, $IRR_GUI_NO_WRAP)
WHILE _IrrRunning()
_IrrBeginScene(0, 0, 0)
_IrrDrawGUI()
_IrrEndScene()
WEND
_IrrStop()