monitor.setTextScale

From ComputerCraft Wiki
Revision as of 01:44, 22 September 2014 by Turkey (Talk | contribs) (Adding a note about the impact of setTextScale on paintutils)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search


Grid Redstone.png  Function monitor.setTextScale
Sets the size of all text on the monitor. scale can be any multiple of 0.5, starting at 0.5 and ending at 5. Also changes the size of pixels drawn by the paintutils API.
Syntax monitor.setTextScale(number scale)
Returns nil
Part of ComputerCraft
API Term

Examples

Grid paper.png  Example
Sets the monitor's text scale to 2.
Code
local monitor = peripheral.wrap("left")
monitor.setTextScale(2)