Skip to content

Commit

Permalink
I'm sorry: I'm actually just terrible about left vs right.
Browse files Browse the repository at this point in the history
  • Loading branch information
BenMakesGames committed Oct 6, 2024
1 parent b187acd commit e35e200
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<Company>Ben Hendel-Doying</Company>
<Description>Some GraphicsManager extensions for PlayPlayMini.</Description>
<Copyright>2023-2024 Ben Hendel-Doying</Copyright>
<Version>5.0.0</Version>
<Version>5.1.0</Version>

<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageTags>monogame playplaymini graphics extensions animations text</PackageTags>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ private void DrawWipe(double progress, bool reentering)
}
}

private void DrawWipeLeftToRight(double progress, bool reentering)
private void DrawWipeRightToLeft(double progress, bool reentering)
{
var width = (int)(Graphics.Width * progress);

Expand All @@ -103,7 +103,7 @@ private void DrawWipeLeftToRight(double progress, bool reentering)
Graphics.DrawFilledRectangle(x, 0, width, Graphics.Height, Config.Color);
}

private void DrawWipeRightToLeft(double progress, bool reentering)
private void DrawWipeLeftToRight(double progress, bool reentering)
{
var width = (int)(Graphics.Width * progress);

Expand Down

0 comments on commit e35e200

Please sign in to comment.