au3Irr2 Function Reference
_IrrSetWindowCaptionSet the caption in the Irrlicht window title bar.
#Include <au3Irrlicht2.au3>
_IrrSetWindowCaption($s_Caption)
Parameters
$s_Caption | String for the title bar. |
Return Value
Success: TrueFailure: False
Remarks
None.
Related
Example
#include "au3Irrlicht2.au3"
_IrrStart()
_IrrSetWindowCaption("Title of the window")
local $nodeCamera = _IrrAddCamera(10,10,10, 0,0,0 )
local $testNode = _IrrAddTestSceneNode()
_IrrSetNodeMaterialTexture( $testNode, _IrrGetTexture(".\media\au3irr2_logo.jpg"), 0)
_IrrSetNodeMaterialFlag( $testNode, $IRR_EMF_LIGHTING, $IRR_OFF )
WHILE _IrrRunning()
_IrrBeginScene(0, 0, 0)
_IrrDrawScene()
_IrrEndScene()
WEND
_IrrStop()