- Messages
- 1,322
- Reaction score
- 752
- Points
- 973
so im using the Source Engine Menu Base and I moved it around a lot
When the menu is open the alpha is set to 1
Here it is in StoreShaders
and the Open/Close Menu
What it looks like -
Im really not sure why its not showing up, so Im not 100% on where to look
When the menu is open the alpha is set to 1
Here it is in StoreShaders
Code:
self.menu.background = self createRectangle("TOP","TOP",-100,0,150,10,(0,0,0),"white",1, 0);
and the Open/Close Menu
Code:
OpenMenu()
{
//just showing this other than everything else that doesnt really matter
self.menu.background.alpha = 1;
}
CloseMenu()
{
//just showing this other than everything else that doesnt really matter
self.menu.background.alpha = 0;
}
What it looks like -
Im really not sure why its not showing up, so Im not 100% on where to look
Last edited: