Mesh-Texture

Blitz3D Forums/Blitz3D Beginners Area/Mesh-Texture

Mr. Bean(Posted 2006) [#1]
How can I make a Texture on a with 'CreateMesh' created Mesh.Can I use 'EntityTexture'?


Stevie G(Posted 2006) [#2]
You need to set the texture uv's for each vertex you create manually if your using createmesh. The u & v should be in the range 0.0 - 1.0, which then corresponds to a position on the texture.

Once you've done that entitytexture should work.


Mr. Bean(Posted 2006) [#3]
Thanks