Difference between revisions of "Tiles"

From ASSS Wiki
Jump to: navigation, search
m (added to category Definitions)
m (raised exponent <sup>; removed <math>.)
 
(5 intermediate revisions by 3 users not shown)
Line 1: Line 1:
Tiles are what make up [[Maps|maps]] in [[Subspace]]/[[Continuum]]. They are small images 16x16 [[Pixels|pixels]] in size. Tiles come from the map's [[LVL_Format#Tileset|tileset]].
+
Tiles are what make up [[Maps|maps]] in [[SubSpace]]/[[Continuum]]. They are small images 16x16 [[Pixels|pixels]] in size. Tiles come from the map's [[LVL_Format#Tileset|tileset]] so you are limited to 190 tiles with a unique appearance. However with LVZ [[LVZ_Scripting#Map_Objects|map objects]] you can overcome this limit.
 +
 
 +
There are some special tiles that are used internally by the game client. These could change between different client versions. Details can be found on the [[LVL Format#Extra_Tiles|LVL Format]] page
  
 
== Some facts ==
 
== Some facts ==
 
*There can't be more than 1048576 tiles in a map
 
*There can't be more than 1048576 tiles in a map
*Since maps are 1024x1024 tiles big, that gives <math>2^1048578</math> possible maps, ignoring different tile graphics.
+
*Since maps are 1024x1024 tiles big, that gives 2<sup>1048578</sup> possible maps, ignoring different tile graphics.
*Many things such as the ?warpto command use ''tile coordinates''. These start with (0, 0) at the top left of the map and (1023, 1023) at the bottom right.
+
*Many things such as the ?warpto command use ''tile coordinates''. These start with (0, 0) at the top left of the map and go to (1023, 1023) at the bottom right.
  
 
[[Category: Definitions]]
 
[[Category: Definitions]]

Latest revision as of 14:04, 11 September 2005

Tiles are what make up maps in SubSpace/Continuum. They are small images 16x16 pixels in size. Tiles come from the map's tileset so you are limited to 190 tiles with a unique appearance. However with LVZ map objects you can overcome this limit.

There are some special tiles that are used internally by the game client. These could change between different client versions. Details can be found on the LVL Format page

Some facts

  • There can't be more than 1048576 tiles in a map
  • Since maps are 1024x1024 tiles big, that gives 21048578 possible maps, ignoring different tile graphics.
  • Many things such as the ?warpto command use tile coordinates. These start with (0, 0) at the top left of the map and go to (1023, 1023) at the bottom right.