Skip to content

Commit f067917

Browse files
committed
fix right viewpoint
1 parent 9c214db commit f067917

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

material_maker/panels/preview_3d/model_menu.gd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ func _on_snap_pressed(id: int) -> void:
142142
rot1.y = PI * (1.0 if shift_down else 0.0)
143143
SnapView.Right:
144144
rot2.x = 0.0
145-
rot1.y = -PI * (-0.5 if shift_down else 0.5)
145+
rot1.y = -PI * (0.5 if shift_down else -0.5)
146146
tween.tween_property(camrot2, "rotation", rot2, 0.2).set_trans(Tween.TRANS_CUBIC)
147147
tween.parallel().tween_property(camrot1, "rotation", rot1, 0.2).set_trans(Tween.TRANS_CUBIC)
148148
tween.parallel().tween_property(pivot, "transform:origin", Vector3.ZERO, 0.2).set_trans(Tween.TRANS_CUBIC)

0 commit comments

Comments
 (0)