uuuuh.... really easy question, surfaces

Blitz3D Forums/Blitz3D Programming/uuuuh.... really easy question, surfaces

Jeroen(Posted 2004) [#1]
Hi!

I have an animated entity, with 2 surfaces.
I'd like to texture 1 surface.
How can I do this? (EntityTexture a certain surface).

Thank you


Perturbatio(Posted 2004) [#2]
something like:
surf=GetSurface(myAnimatedEntity, 1)
texture= LoadTexture("MyTexture.jpg")
EntityTexture(surf,texture)


I would guess.


Ross C(Posted 2004) [#3]
You could use the PaintSurface command. You just need to create a brush first ;)


Jeroen(Posted 2004) [#4]
got it done with brushes! It's very easy, still I want doing something wrong :D