Skip to content

Commit

Permalink
remove comments
Browse files Browse the repository at this point in the history
  • Loading branch information
manups4e committed Jan 30, 2025
1 parent f900ce7 commit ca3fe01
Showing 1 changed file with 0 additions and 23 deletions.
23 changes: 0 additions & 23 deletions ScaleformUI_Csharp/Scaleforms/PauseMenu/PauseMenuScaleform.cs
Original file line number Diff line number Diff line change
Expand Up @@ -293,29 +293,6 @@ public void Draw(bool isLobby = false)
DrawScaleformMovie(_pause.Handle, pausePos.X, pausePos.Y, pauseSize.Width, pauseSize.Height, 255, 255, 255, 255, 0);
else
DrawScaleformMovie(_lobby.Handle, pausePos.X, pausePos.Y, pauseSize.Width, pauseSize.Height, 255, 255, 255, 255, 0);


/*
Vector2 headerPos = new Vector2(0.501f, 0.162f);
SizeF headerSize = new SizeF(0.6782f, 0.145f);
Vector2 pausePos = new Vector2(0.6617187f, 0.7226667f);
SizeF pauseSize = new SizeF(1, 1);
ScreenTools.AdjustNormalized16_9ValuesForCurrentAspectRatio(3, ref headerPos, ref headerSize);
ScreenTools.AdjustNormalized16_9ValuesForCurrentAspectRatio(3, ref pausePos, ref pauseSize);
if (BGEnabled)
_pauseBG.Render2D();
DrawScaleformMovie(_header.Handle, headerPos.X, headerPos.Y, 0.6782f, 0.145f, 255, 255, 255, 255, 0);
if (!isLobby)
DrawScaleformMovie(_pause.Handle, pausePos.X, pausePos.Y, pauseSize.Width, pauseSize.Height, 255, 255, 255, 255, 0);
else
DrawScaleformMovie(_lobby.Handle, pausePos.X, pausePos.Y, pauseSize.Width, pauseSize.Height, 255, 255, 255, 255, 0);
*/
}
}
}
Expand Down

0 comments on commit ca3fe01

Please sign in to comment.