View Single Post
  #7  
Old 10-06-2006, 04:12 PM
farshizzo farshizzo is offline
WorldViz Team Member
 
Join Date: Mar 2003
Posts: 2,849
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)
Reply With Quote