Merge pull request #46763 from Calinou/interepolatedcamera-remove-deprecation-warning
Remove deprecation warning messages from InterpolatedCamera
This commit is contained in:
commit
eca079c198
@ -37,8 +37,6 @@ void InterpolatedCamera::_notification(int p_what) {
|
|||||||
switch (p_what) {
|
switch (p_what) {
|
||||||
case NOTIFICATION_ENTER_TREE: {
|
case NOTIFICATION_ENTER_TREE: {
|
||||||
|
|
||||||
WARN_DEPRECATED_MSG("InterpolatedCamera has been deprecated and will be removed in Godot 4.0.");
|
|
||||||
|
|
||||||
if (Engine::get_singleton()->is_editor_hint() && enabled)
|
if (Engine::get_singleton()->is_editor_hint() && enabled)
|
||||||
set_process_internal(false);
|
set_process_internal(false);
|
||||||
|
|
||||||
@ -133,11 +131,6 @@ real_t InterpolatedCamera::get_speed() const {
|
|||||||
return speed;
|
return speed;
|
||||||
}
|
}
|
||||||
|
|
||||||
String InterpolatedCamera::get_configuration_warning() const {
|
|
||||||
|
|
||||||
return TTR("InterpolatedCamera has been deprecated and will be removed in Godot 4.0.");
|
|
||||||
}
|
|
||||||
|
|
||||||
void InterpolatedCamera::_bind_methods() {
|
void InterpolatedCamera::_bind_methods() {
|
||||||
|
|
||||||
ClassDB::bind_method(D_METHOD("set_target_path", "target_path"), &InterpolatedCamera::set_target_path);
|
ClassDB::bind_method(D_METHOD("set_target_path", "target_path"), &InterpolatedCamera::set_target_path);
|
||||||
|
@ -57,8 +57,6 @@ public:
|
|||||||
void set_interpolation_enabled(bool p_enable);
|
void set_interpolation_enabled(bool p_enable);
|
||||||
bool is_interpolation_enabled() const;
|
bool is_interpolation_enabled() const;
|
||||||
|
|
||||||
String get_configuration_warning() const;
|
|
||||||
|
|
||||||
InterpolatedCamera();
|
InterpolatedCamera();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user