I'd like to modify the quake 3 map tutorial in order to make the 3d coordinates appear in the window caption : here is the code ( unmodified ) utilised in the tutorial to show the number of polys and the framerate in the windows caption
Code: Select all
swprintf(tmp, 1024, L"Quake 3 Map Example - Irrlicht Engine (fps:%d) Triangles:%d", fps,driver>getPrimitiveCountDrawn() );
device->setWindowCaption(tmp);
What can I do ?
Thank you in advance