Skip to content

Commit

Permalink
v0.14.1
Browse files Browse the repository at this point in the history
  • Loading branch information
JavidPack committed Sep 3, 2020
1 parent fd82e70 commit 41f0964
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions Tools/Hitboxes/HitboxesTool.cs
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ internal override void WorldDraw()
if (showPlayerMeleeHitboxes) drawPlayerMeleeHitboxes();
if (showNPCHitboxes) drawNPCHitboxes();
if (showProjectileHitboxes) drawProjectileHitboxes();
// TODO: TileCollideStyle hitboxes? different?
if (showProjectileDamageHitboxes) drawProjectileDamageHitboxes();
if (showTEPositions) drawTileEntityPositions();
if (showWorldItemHitboxes) drawWorldItemHitboxes();
Expand Down
4 changes: 2 additions & 2 deletions Tools/Miscellaneous/MiscellaneousUI.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public override void OnInitialize()
{
mainPanel = new UIPanel();
mainPanel.SetPadding(0);
int width = 150;
int width = 250;
int height = 180;
mainPanel.Left.Set(-40f - width, 1f);
mainPanel.Top.Set(-110f - height, 1f);
Expand Down Expand Up @@ -66,7 +66,7 @@ public override void OnInitialize()
top += 30;


UITextPanel<string> generateTownSprite = new UITextPanel<string>("Generate Town Sprite");
UITextPanel<string> generateTownSprite = new UITextPanel<string>("Generate Town Sprite (WIP)");
generateTownSprite.SetPadding(4);
generateTownSprite.Width.Set(-10, 0.5f);
generateTownSprite.Top.Set(top, 0f);
Expand Down
2 changes: 1 addition & 1 deletion build.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
author = jopojelly
version = 0.14
version = 0.14.1
versionScheme = major when done, minor when new tool, build when new item within tool, revision for bug fix quick release
displayName = Modders Toolkit
homepage = https://forums.terraria.org/index.php?threads/modders-toolkit-a-mod-for-modders-doing-modding.55738/
Expand Down

0 comments on commit 41f0964

Please sign in to comment.