We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c214db commit f067917Copy full SHA for f067917
material_maker/panels/preview_3d/model_menu.gd
@@ -142,7 +142,7 @@ func _on_snap_pressed(id: int) -> void:
142
rot1.y = PI * (1.0 if shift_down else 0.0)
143
SnapView.Right:
144
rot2.x = 0.0
145
- rot1.y = -PI * (-0.5 if shift_down else 0.5)
+ rot1.y = -PI * (0.5 if shift_down else -0.5)
146
tween.tween_property(camrot2, "rotation", rot2, 0.2).set_trans(Tween.TRANS_CUBIC)
147
tween.parallel().tween_property(camrot1, "rotation", rot1, 0.2).set_trans(Tween.TRANS_CUBIC)
148
tween.parallel().tween_property(pivot, "transform:origin", Vector3.ZERO, 0.2).set_trans(Tween.TRANS_CUBIC)
0 commit comments