how did you multiply the texture on the floor?
I watched your code sample. I understood how to do the shadows.
But it's unclear why you have the texture multiplied completely, but I only have 2 strips to the right and forward. and that's all.
thanks in advance.
floorBoxID = 1
floorTexID = LoadImage("1.png")
SetObjectImage( floorBoxID, floorTexID, 0 )
SetObjectUVScale (floorBoxID, 0,10,10)
What have I forgotten? Tell me please.
thank you in advance.
`------------------ texture grass --------------------------------
floorBoxID = 1
floorTexID = LoadImage("1.png")
SetObjectImage( floorBoxID, floorTexID, 0 )
SetImageWrapU ( floorTexID,1)
SetImageWrapV ( floorTexID,1)
SetObjectUVScale (floorBoxID, 0,10,10)
OK. thanks for the help. everything is working.