diff options
author | kobewi <kobewi4e@gmail.com> | 2022-12-13 22:37:41 +0100 |
---|---|---|
committer | kobewi <kobewi4e@gmail.com> | 2023-01-16 10:30:21 +0100 |
commit | 1260cb0bfb0450c3cf1323dc083e569dff70d438 (patch) | |
tree | 91a0c903a0bc5086faaa9025d385f7c070669850 /scene/animation/tween.h | |
parent | 0f0b853c988f2c3ff322d8eaf97dd4f8d5de46c8 (diff) | |
download | redot-engine-1260cb0bfb0450c3cf1323dc083e569dff70d438.tar.gz |
Improve empty Tween error message
Diffstat (limited to 'scene/animation/tween.h')
-rw-r--r-- | scene/animation/tween.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scene/animation/tween.h b/scene/animation/tween.h index 08911d6623..58217db535 100644 --- a/scene/animation/tween.h +++ b/scene/animation/tween.h @@ -130,6 +130,8 @@ protected: static void _bind_methods(); public: + virtual String to_string() override; + Ref<PropertyTweener> tween_property(Object *p_target, NodePath p_property, Variant p_to, double p_duration); Ref<IntervalTweener> tween_interval(double p_time); Ref<CallbackTweener> tween_callback(Callable p_callback); |