Author Topic: Progress Bar Profile Bitmap Array?  (Read 1231 times)

I don't know if this version of Torque even supports it, but what would a bitmap array for a progress bar profile look like?

GuiProgresssCtrl does not use a bitmap. You can change it's border and color and stuff, by making a new profile for the ProgressCtrl and setting it to that profile.

Like if you made this:
Code: [Select]
new GuiControlProfile(MyProgressProfile : GuiProgressProfile)
{
fillColor = "255 0 0 255";
};
and then you set the ProgressCtrl's profile to MyProgressProfile, then the color of the  bar would be a solid red.

not very familiar, but if you were trying to achieve something like the ghosting progress you would need several images and then change them every interval

not very familiar, but if you were trying to achieve something like the ghosting progress you would need several images and then change them every interval
that's just an animated bitmap control im p sure, not what i'm looking for

i was planning on making a fancy healthbar but i guess i can't

i'll just stick with the solid red i was using then, thanks

i was planning on making a fancy healthbar but i guess i can't

i'll just stick with the solid red i was using then, thanks
Why can't you?

Why can't you?
if i can't have bitmap arrays for progress bar profiles then i can't really do it very well

unless that's a question you're asking planning on revealing a magical alternative that isn't multiple premade bitmaps that i just round the percentage off to and use

if i can't have bitmap arrays for progress bar profiles then i can't really do it very well

unless that's a question you're asking planning on revealing a magical alternative that isn't multiple premade bitmaps that i just round the percentage off to and use
Why not just change the bar's appearance how I told you to?

Why not just change the bar's appearance how I told you to?
i get the feeling you skipped the last part of the post you quoted

i was already doing what you were saying, lol