The gimp ROCKS!!!!!!!!!!!
ow... here's a snippet for demonsbreath
rem Create matrix
make matrix 1,4000,4000,64,64
randomize matrix 1,35
rem load texture for matrix
load image "Whatever.bmp",2
rem apply texture to matrix
prepare matrix texture 1,2,64,64
for Xtiles=0 to 63
for Ztiles =0 to 63
set matrix tile 1,Xtiles,63 - Ztiles,(Xtiles+1)+(64*Ztiles)
next Ztiles
next Xtiles
rem apply changes
update matrix 1
Oh... this snippet works with a 64*64 tiles matrix... i didn't tested it on other sizes but i think that works too. I use this code to make landscapes and spread a huge land texture (sometimes 4096*4096!!!) over the matrix... this creates a beatyful landscape
Juzt a dude who likez progging