Difference between revisions of "love.window.setTitle"

(Added a warning, that some systems can't handle constant updates of the title.)
m (Updated notification.)
 
Line 3: Line 3:
 
Sets the window title.
 
Sets the window title.
  
{{notice|Constantly updating the window title can lead to issues on some systems. Therefore you shouldn't use [[love.timer.getFPS (Deutsch)|love.timer.getFPS]] together with [[love.window.setTitle (Deutsch)|love.window.setTitle]] to show a game's current FPS in the window title.}}
+
{{notice|Constantly updating the window title can lead to issues on some systems and therefore is discouraged.}}
  
 
== Function ==
 
== Function ==

Latest revision as of 15:39, 2 October 2014

Available since LÖVE 0.9.0
This function is not supported in earlier versions.


Sets the window title.

O.png Constantly updating the window title can lead to issues on some systems and therefore is discouraged.  


Function

Synopsis

love.window.setTitle( title )

Arguments

string title
The new window title.

Returns

Nothing.

See Also


Other Languages