Difference between revisions of "TileDisplay.scrollX"
Jump to navigation
Jump to search
(Initial creation) |
m (added usage note) |
||
(One intermediate revision by the same user not shown) | |||
Line 2: | Line 2: | ||
See also: [[TileDisplay.scrollY]]; [[PixelDisplay.scrollX]]; [[SpriteDisplay.scrollX]] | See also: [[TileDisplay.scrollY]]; [[PixelDisplay.scrollX]]; [[SpriteDisplay.scrollX]] | ||
+ | |||
+ | |||
+ | == Usage Notes == | ||
+ | |||
+ | Calling [[TileDisplay.clear]] does not reset TileDisplay.scrollX and [[TileDisplay.scrollY]]. So, when you want to fully reset a tile display, remember to set these properties back to 0. | ||
== Example == | == Example == | ||
− | <ms></ms> | + | <ms>clear |
+ | display(4).mode = displayMode.tile | ||
+ | td = display(4) | ||
+ | td.tileSet = file.loadImage("/sys/pics/TileShapes.png") | ||
+ | td.tileSetTileSize = 64 | ||
+ | td.clear 16 // sets all cells to index 16 | ||
+ | for i in range(0,500,10) | ||
+ | td.scrollX = i // scroll more to the left on each update | ||
+ | wait 0.2 | ||
+ | end for</ms> | ||
[[Category:Mini Micro]] | [[Category:Mini Micro]] |
Latest revision as of 00:16, 4 December 2020
TileDisplay.scrollX
: Horizontal scroll amount by which the whole tile display is scrolled to the left.
See also: TileDisplay.scrollY; PixelDisplay.scrollX; SpriteDisplay.scrollX
Usage Notes
Calling TileDisplay.clear does not reset TileDisplay.scrollX and TileDisplay.scrollY. So, when you want to fully reset a tile display, remember to set these properties back to 0.
Example
clear
display(4).mode = displayMode.tile
td = display(4)
td.tileSet = file.loadImage("/sys/pics/TileShapes.png")
td.tileSetTileSize = 64
td.clear 16 // sets all cells to index 16
for i in range(0,500,10)
td.scrollX = i // scroll more to the left on each update
wait 0.2
end for