uuuuh.... really easy question, surfaces
Blitz3D Forums/Blitz3D Programming/uuuuh.... really easy question, surfaces
| ||
| 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 |
| ||
something like:
surf=GetSurface(myAnimatedEntity, 1)
texture= LoadTexture("MyTexture.jpg")
EntityTexture(surf,texture)
I would guess. |
| ||
| You could use the PaintSurface command. You just need to create a brush first ;) |
| ||
| got it done with brushes! It's very easy, still I want doing something wrong :D |