Skip to content

Commit

Permalink
Fix PointCollapseContainer's TextureRect being rotated incorrectly
Browse files Browse the repository at this point in the history
  • Loading branch information
OverloadedOrama committed Feb 11, 2024
1 parent 0e4c9ba commit 2b4d85a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/UI/PerspectiveEditor/PointCollapseContainer.gd
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ func _set_visible(press: bool) -> void:
if press:
$TextureRect.rotation = 0
else:
$TextureRect.rotation = -90
$TextureRect.rotation = -PI / 2
content.visible = press


Expand Down

0 comments on commit 2b4d85a

Please sign in to comment.