1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-22 15:06:45 +00:00

Make CSGShape follow curve's tilt in Path mode

Fixes #65634.

(cherry picked from commit f476b74ecf)
This commit is contained in:
pidogs
2023-07-11 16:27:49 -07:00
committed by Yuri Sizov
parent 00d5da2f09
commit 67f5ec2f2f

View File

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