Page 1 of 1

Sprites

Posted: Thu Sep 30, 2004 3:17 am
by Legrand
All tutorials are great but as i'm not an expert-far from being one!-I would like to know if it is possible to increase the dimensions of the moving subject that looks to me limited to 15x21 map size.Is that true or is it possible to increase?

Posted: Thu Sep 30, 2004 4:28 am
by Z!re
The only limit is memory, and with a few tricks you can even get around that.

I'm using maps of 5120x3200 in MOo without problems.


First of all, as long as you stay under 64kb (a integer array of 32000) you should be fine.

To get a larger map, make sure you change the dim statement, and the number of data statements (if reading data, or the file if reading from a file)

Code: Select all

Dim map(200, 160) As Integer
Works just fine.


In reality, and with a few tricks, there is no real limit to map sizes.

Re

Posted: Tue Oct 26, 2004 9:28 am
by Mjuijvn
Legrand: How big are your tiles? Could you post your map structure? (is there one?)