IGlass 1.5.2 with animated images
BlitzMax Forums/BlitzMax Programming/IGlass 1.5.2 with animated images
| ||
Hi I'm working on the next Iglass release with animated images and buttons. Please can you download this : http://www.blitz3dfr.com/phpfrench/request.php?30 And in the zip file, execute : Example Animated Image.exe and report me you frame rate ? Cheers ![]() |
| ||
FPS: 509/7462620 |
| ||
Roughly 800 fps. |
| ||
Thanks :) ! |
| ||
FPS : 1228 / 7462726 Tested on my desktop system, specs. in signature. |
| ||
A bir under 800. Did I mention I only own an amd2100+! :P |
| ||
around 670 on my lappy; AMD Mobile Athlon 64 3200+, ATI Mobile 9700 64 MB, 512 MB SDRAM 333MHz, WinXP Home Edition |
| ||
Thanks ! |
| ||
~1100 |
| ||
can you add functionallity so that game menus can be made with it? it should be easy, just make it so that you can get rid of windows top or make it totaly transparent, and also make anything that's not needed transparent. Add support for this and you'll have more sells ;) |
| ||
If you look the Iglass demo you will see that ALL widget can be transparent (full or none) ! You can make beautifull interface :) With alpha like window :) For example look the exe file : Example Custom Toolbar.exe you will see that the window and the listbox is 50% transparent but not the button :) you can chosse individualy the alpha value for each gadget :) Example : -------- MyWindow02=IGL_Window.Create("Alpha and shadow !",400,100,250,300,False,False,True) MyWindow02.Alpha=0.5 Animated widget : ------------------ Of course for the moment it's only the image class :) but i plan to make animated button :) for example animated game menu :) I'm working on :) |
| ||
>for example animated game menu :) Cool I'm sure it will be "the gui" to use :) I'll probably buy it when I come back from vacation :9 Work on! |
| ||
I do , i do :) |
| ||
Random Suggestion: Allow each widget to have a tint color set. This way one skin can have a infinite number of looks. You just set the current color to the tinit color instead of to white. So I could set a windows tinit color to 255,255,0 to get a yellowish window that still has all of the gradients in the skin graphics. |
| ||
Good idea ! :) i'll try it :) |
| ||
Good news :) you can now change all widget color :) by this : MyWindow02=IGL_Window.Create("Test window",250,250,480,210,True,True,False) MyWindow02.Color.Red=255 MyWindow02.Color.Green=155 MyWindow02.Color.Blue=15 Make a yellow window :) happy ? :) |
| ||
nice. :) Please add a method to set it: MyWindow.SetTint(255,155,15) |
| ||
I do :) |