All misc items implemented. Enhanced Shock Rifle implemented.
Going to focus on the HUD now while at the same time doing the remaining weapons.
This commit is contained in:
parent
5248ac8fd6
commit
d3da87cefe
310 changed files with 2236 additions and 77 deletions
23
zscript/uthud.zsc
Normal file
23
zscript/uthud.zsc
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
// An almost 1:1 recreation of the UT HUD, uses player color for tinting
|
||||
Class UTHud : BaseStatusBar
|
||||
{
|
||||
override void Init()
|
||||
{
|
||||
Super.Init();
|
||||
SetSize(0,1280,960);
|
||||
}
|
||||
|
||||
override void Draw( int state, double TicFrac )
|
||||
{
|
||||
Super.Draw(state,TicFrac);
|
||||
if ( (state == HUD_StatusBar) || (state == HUD_Fullscreen) )
|
||||
{
|
||||
BeginHUD();
|
||||
DrawUTHUD(TicFrac);
|
||||
}
|
||||
}
|
||||
|
||||
private void DrawUTHUD( double TicFrac )
|
||||
{
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue