Game Development Community

GUI editor heeeelp!

by Tyler Pfaff · in Torque Game Engine · 09/01/2004 (7:13 am) · 2 replies

So, after a bit of poking around, i finally managed to add my own menu to the starter.fps example. However, one problem that I've had and cannot seem to figure out is how to get the bitmap button to actually use the bitmap I specify in the "bitmap" field. The chunked control works fine, but for some reason the buttons do not. Anyone know how to get my bitmaps showing as buttons? Any help would be greatly appreciated.

Thanks!

#1
09/01/2004 (7:30 am)
You specify the bitmap file as ...path/imageName

The bitmap button code looks for four files named
imageName_n
imageName_h
imageName_d
imageName_i

You only have to supply the _n one, but then you wont have the fancy effects :).
#2
09/01/2004 (9:10 am)
Cool, that's what I needed. Thanks!