Merge pull request #8208 from Shin-NiL/master
Honor the Tween's final values
This commit is contained in:
commit
d7dd276ccc
|
@ -610,6 +610,7 @@ void Tween::_tween_process(float p_delta) {
|
|||
_apply_tween_value(data, result);
|
||||
|
||||
if (data.finish) {
|
||||
_apply_tween_value(data, data.final_val);
|
||||
emit_signal("tween_completed", object, data.key);
|
||||
// not repeat mode, remove completed action
|
||||
if (!repeat)
|
||||
|
|
Loading…
Reference in New Issue