![]() |
|
#7
|
|||
|
|||
Thanks for the files. The problem is that the texture is not set to repeating mode. Just add the following lines after adding your texture:
Code:
texture.wrap(viz.WRAP_S,viz.REPEAT) texture.wrap(viz.WRAP_T,viz.REPEAT) |
|
|