Merge pull request #79355 from pidogs/master

Make CSGShape follow curve's tilt in Path mode
This commit is contained in:
Rémi Verschelde 2023-08-17 12:28:16 +02:00
commit 5aaaf76a87
No known key found for this signature in database
GPG key ID: C3336907360768E1

View file

@ -1933,7 +1933,7 @@ CSGBrush *CSGPolygon3D::_build_brush() {
case PATH_ROTATION_PATH: case PATH_ROTATION_PATH:
break; break;
case PATH_ROTATION_PATH_FOLLOW: case PATH_ROTATION_PATH_FOLLOW:
current_up = curve->sample_baked_up_vector(0); current_up = curve->sample_baked_up_vector(0, true);
break; break;
} }
@ -2020,7 +2020,7 @@ CSGBrush *CSGPolygon3D::_build_brush() {
case PATH_ROTATION_PATH: case PATH_ROTATION_PATH:
break; break;
case PATH_ROTATION_PATH_FOLLOW: case PATH_ROTATION_PATH_FOLLOW:
current_up = curve->sample_baked_up_vector(current_offset); current_up = curve->sample_baked_up_vector(current_offset, true);
break; break;
} }