Flip hortizonial sprite
Blitz3D Forums/Blitz3D Programming/Flip hortizonial sprite
| ||
| Is there anyway to flip a sprite hortizonal. So let say a texture of left arrow "<-" then flip will equal to right arrow "->". Cant seem to find it. Nack |
| ||
| Rotatesprite MySprite, 180 Stevie |
| ||
| or if it's a 3D sprite, then scaletexture sprite,-1,1 at least I think that's it. |
| ||
| Scalesprite maybe? Scale texture will flip the texture on everything which uses that texture. |
| ||
| scaletexture wouldnt be wise cus everything that use that texture will be flipped. I tried scalesprite -1,1.....but it just disspeared for some odd reason |
| ||
| Maybe it got culled ? Try EntityFx sprite, 16 ? |
| ||
| yeah you will have flipped the normals by scaling it negatively |
| ||
| ohh its the culled thing. I forgot sprite is missing a back LOL. thx all. |