Skip to content

Commit

Permalink
fix(player): stop picoberries offsetting trail
Browse files Browse the repository at this point in the history
  • Loading branch information
Jibbajabbafic committed Jun 4, 2023
1 parent 75ec374 commit 306b732
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ Types of changes:
- Actually apply bot difficulty setting to bots and tweak difficulty
- Stop level generation breaking with 1 obstacle
- Stop respawning clearing item effects
- Picoberries no longer offset the player trail incorrectly

## [0.9.1] - 2023-05-29

Expand Down
4 changes: 2 additions & 2 deletions client/world/player/player.gd
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,6 @@ func set_invisible(value: bool) -> void:
func set_shrunk(value: bool) -> void:
.set_shrunk(value)
if value:
$Trail.scale = Vector2(0.5, 0.5)
$Trail.width = 28
else:
$Trail.scale = Vector2.ONE
$Trail.width = 56

0 comments on commit 306b732

Please sign in to comment.