Fix #127328: Snake Hook brush rotation applied incorrectly for symmetry

Pull Request: https://projects.blender.org/blender/blender/pulls/127373
This commit is contained in:
Sean Kim
2024-09-09 22:44:20 +02:00
committed by Sean Kim
parent 6e0223a04c
commit 7b9004d57b

View File

@@ -3813,7 +3813,7 @@ void SCULPT_cache_calc_brushdata_symm(blender::ed::sculpt_paint::StrokeCache &ca
cache.rake_rotation->y,
cache.rake_rotation->z);
flip_qt_qt(new_quat, existing, symm);
cache.rake_rotation_symm = math::Quaternion(existing);
cache.rake_rotation_symm = math::Quaternion(new_quat);
}
}