Demo

posted in Beals Software
Published July 15, 2006
Advertisement
Just a quick update so you guys can try the new demo. Please tell me if you have any issues!

Once I get a chance I'm going to implement constructors for each class that allow you to change this:
Dialog* pDlg = new Dialog;pDlg->Set(0, "Dialog!", x, y, width, height, id);m_WidgetMgr.AddChild(pDlg);Button* pBtn = new Button;pBtn->Set(pDlg, "Close", x, y, width, height, id, overlay);pDlg->AddChild(pBtn);


To this:
Dialog* pDlg = m_WidgetMgr.AddChild(new Dialog(0, "Dialog!", x, y, width, height, id));pDlg->AddChild(new Button(pDlg, "Close", x, y, width, height, id, overlay));


Also, within a few months I'm going to be putting the entire library onto my website so that you guys can check it out. Before that though I'm going to write an article about it to document some of the choices I made (bad and good.)

Off to breakfast and then some hardcore work on Malathedra. YAY!!!
Previous Entry Textury
0 likes 3 comments

Comments

ildave1
GUI seems to work great.

Though, visually, I'm having some problems overhere on my machine.

July 15, 2006 01:18 PM
Programmer16
Well, I didn't see that coming. Evidentally I have a rounding error somewhere since it looks like everything is off by a pixel or 2 (on dave's it looks like it's over to the left and down, on my mom's it looks like it's just down, etc.) I'll have to look into this later when I get a chance.
July 15, 2006 02:09 PM
Programmer16
Ok, I think I fixed it (atleast it works on my computers and il_dave's computer now.) So, I uploaded a new demo. Check it out; all the cool kids are.
July 15, 2006 03:02 PM
You must log in to join the conversation.
Don't have a GameDev.net account? Sign up!
Advertisement
Advertisement