![]() |
|
#4
|
|||
|
|||
|
Hi,
I believe your head model is using repeating texture coordinates, so you'll probably need to set the texture to repeat mode also. After you add the texture try the following: Code:
newtexture.wrap(viz.WRAP_S,viz.REPEAT) newtexture.wrap(viz.WRAP_T,viz.REPEAT) |
|
|