Yes it does work. If you read the entire tutorial (the page I sent you) it shows you how to texture the Matrix.
Step 1
Make the Matrix
MAKE MATRIX 100, 50, 50, 25, 25
` id = 100
` width = 50 units
` depth = 50 units
` 25 tiles each for left to right, and up and down
Step 2
Load the image
LOAD IMAGE "grass.jpg", 10
` "grass.jpg" is located in the same place as the exe
` 10 is the unique number we assign it
Step 3
Prepare the Texture
Using the "prepare matrix texture" command it will take an image and split it into sections. If you only have a image that has 1 texture you would use it like so
` prepare matrix texture matrixID, imageID, 1, 1
prepare matrix texture 100, 10, 1, 1
` 100 is the id of our matrix
` 10 is the id of our image
` 1, 1 is the across and down tiles of our image. (1 texture)
Step 4
Add the texture to each tile on the matrix
FOR x = 0 TO 25
FOR y = 0 TO 25
set matrix tile 100, x, y, 10
` x is our width tiles
` y is our height tiles
NEXT y
NEXT x
Step 5
Finally we have to update the matrix
Please correct me if i am wrong as i havent tried this in darkbasic or anything (at work atm)
Online Flash Games and Guides .::. http://www.gamestack.org
Online Notebook .::. http://onlinenotes.gamestack.org