Hi,
I am french so my english can to be bad !!!
I have put to matrix in my code, one of them have the effect "Ghost Matrix". But when I compile the game, I CAN'T SEE THIS ONE !!! Why ???????? Can you help me pleeeeeeeeeeeeeeeeeease !
Thanks a lot !
Dee
P.S : That's my code :
load bitmap "land.bmp",1
load image "water.bmp",1
load image "ml2.bmp",2
Make Matrix 10000,100,100,64,64
prepare matrix texture 10000,2,1,1
set current bitmap 1
rem lock pixels
for z=0 to 63
for x=0 to 63
col=point(x,z)
h#=rgbr(col)/4.0
set matrix height 10000,x,z,h#
next x
next z
rem unlock pixels
delete bitmap 1
position matrix 10000,0,0,0
update matrix 10000
set current bitmap 0
Make Matrix 3,100,100,64,64
position matrix 3,0,0,0
prepare matrix texture 3,1,1,1
Ghost Matrix on 3
update matrix 3
---3Dee by me---