doc: Update classref with node renames

A few extra renames for classes which were missed in last week's PRs.
This commit is contained in:
Rémi Verschelde 2020-03-30 18:22:57 +02:00
parent 0168709978
commit eaaee63b62
203 changed files with 1076 additions and 1095 deletions

View file

@ -262,11 +262,11 @@ String PathFollow3D::get_configuration_warning() const {
return String();
if (!Object::cast_to<Path3D>(get_parent())) {
return TTR("PathFollow only works when set as a child of a Path node.");
return TTR("PathFollow3D only works when set as a child of a Path3D node.");
} else {
Path3D *path = Object::cast_to<Path3D>(get_parent());
if (path->get_curve().is_valid() && !path->get_curve()->is_up_vector_enabled() && rotation_mode == ROTATION_ORIENTED) {
return TTR("PathFollow's ROTATION_ORIENTED requires \"Up Vector\" to be enabled in its parent Path's Curve resource.");
return TTR("PathFollow3D's ROTATION_ORIENTED requires \"Up Vector\" to be enabled in its parent Path3D's Curve resource.");
}
}