mirror of
https://github.com/Redot-Engine/redot-engine.git
synced 2025-12-06 23:31:53 -05:00
Merge pull request #85455 from xiongyaohua/fix_CSGPolygon_not_following_Path3D
Notify CSGPolygon about transform changes in Path3D
This commit is contained in:
@@ -1826,11 +1826,13 @@ CSGBrush *CSGPolygon3D::_build_brush() {
|
||||
if (path) {
|
||||
path->disconnect("tree_exited", callable_mp(this, &CSGPolygon3D::_path_exited));
|
||||
path->disconnect("curve_changed", callable_mp(this, &CSGPolygon3D::_path_changed));
|
||||
path->set_update_callback(Callable());
|
||||
}
|
||||
path = current_path;
|
||||
if (path) {
|
||||
path->connect("tree_exited", callable_mp(this, &CSGPolygon3D::_path_exited));
|
||||
path->connect("curve_changed", callable_mp(this, &CSGPolygon3D::_path_changed));
|
||||
path->set_update_callback(callable_mp(this, &CSGPolygon3D::_path_changed));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user