<P>	//change hud
<P>	root.hud.destroy();
<P>	root.hud = deusexHUD(root.NewChild(Class'tnmHUD'));
<P>	root.hud.UpdateSettings(self);
<P>	root.hud.SetWindowAlignments(HALIGN_Full, VALIGN_Full, 0, 0);
<P>
<P>	//change scope
<P>	root.scopeview.destroy();
<P>	root.scopeview = deusexscopeview(root.NewChild(class'tnm.tnmscopeview', False));
<P>	scope = tnmscopeview(root.scopeview);
<P>	if (scope == none)
<P>		LOG("OMFG NO SCOPE!!!");
<P>	else
<P>	{
<P>		scope.SetWindowAlignments(HALIGN_Full, VALIGN_Full, 0, 0);
<P>		scope.Lower();
<P>	}
<P>}
<P>
<P>// ----------------------------------------------------------------------
<P>// PostIntro()
<P>// ----------------------------------------------------------------------
<P>
