TextItemSetScale: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
(Remove spaces)
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
__NOTOC__  
__NOTOC__
{{Server function}}
This function allows the setting of the scale of a text item.
This function allows the setting of the scale of a text item.


==Syntax==  
==Syntax==  
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
bool textItemSetScale ( textitem theTextitem, float scale )            
bool textItemSetScale ( textitem theTextitem, float scale )
</syntaxhighlight>  
</syntaxhighlight>  


Line 15: Line 16:


==Example==  
==Example==  
This example retreives the scale of the ''theTextitem'' text item, and if it is too small it enlarges it so it is more visible.
This example retrieves the scale of the ''theTextitem'' text item, and if it is too small it enlarges it so it is more visible.
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
local scale = textItemGetScale ( theTextItem )  --get the scale of theTextitem and define it as 'scale'
local scale = textItemGetScale ( theTextItem )  --get the scale of theTextitem and define it as 'scale'

Latest revision as of 21:13, 29 October 2023

This function allows the setting of the scale of a text item.

Syntax

bool textItemSetScale ( textitem theTextitem, float scale )

Required Arguments

  • theTextitem: The text item you wish to set the scale of.
  • scale: A floating point value indicating the scale of the text you wish to set to. 1.0 is around 12pt.

Returns

Returns true if the scale was successfully set, false otherwise.

Example

This example retrieves the scale of the theTextitem text item, and if it is too small it enlarges it so it is more visible.

local scale = textItemGetScale ( theTextItem )  --get the scale of theTextitem and define it as 'scale'
if (scale < 0.5) then --if the scale is smaller than 0.5
	textItemSetScale ( theTextItem, 1.0 ) --then restore it to default size, 1.0.
end

See Also