I use sprite to display an image texture but the sprite width and height are in 3D world units and I need to automatically display the loaded image texture without stretching.

I know how to load a texture I only need a way to resize the sprite automatically according to the loaded image.

tools used are Delphi / GLScene

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Use a TGLHUDSprite, it'll be directly displayed and positioned in 2D in screen units.

TGLSprite is for when you want a sprite in 3D, you can position it in screen units, but you'll have to do the math for that (look at TGLHUDSprite's and imposter's source code for hints on that math).

link|improve this answer
not what I am looking for! – Welliam Feb 2 at 16:08
Maybe you could clarify what you're looking for then? – Eric Grange Feb 3 at 7:42
I just want the sprite width and height to best suit the current size of the image texture in other words based on what I should set the size of the sprite object ? – Welliam Feb 4 at 1:17
You can just get the size from the Delphi object that holds the image, which is going to be a TGraphic (be it a TBitmap, a TPNGImage, a TJPegImage, etc.), and TGraphic has Width/Height properties. – Eric Grange Feb 6 at 8:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.