mirror of
https://github.com/exogen/t2-mapper.git
synced 2026-01-20 04:35:05 +00:00
15 lines
397 B
C#
15 lines
397 B
C#
package FixVmenuPosition
|
|
{
|
|
|
|
function showChatMenuHud(){
|
|
parent::showChatMenuHud();
|
|
%height = ((getWord($pref::Video::resolution, 1) * 0.5) / $pref::Video::uiScale) - 75;
|
|
//echo("Height: " @ %height);
|
|
ChatMenuHud.position = "8" SPC %height;
|
|
}
|
|
|
|
};
|
|
|
|
//Prevent package from being activated if it is already
|
|
if (!isActivePackage(FixVmenuPosition))
|
|
activatePackage(FixVmenuPosition); |