1
0
mirror of https://github.com/godotengine/godot.git synced 2026-01-06 19:41:11 +00:00

Merge pull request #29621 from DevinPentecost/feature/0_duration_tween

Implementing 0-duration tweens
This commit is contained in:
Rémi Verschelde
2019-06-14 16:57:09 +02:00
committed by GitHub
2 changed files with 439 additions and 173 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -135,6 +135,7 @@ private:
void _tween_process(float p_delta);
void _remove_by_uid(int uid);
void _push_interpolate_data(InterpolateData &p_data);
bool _build_interpolation(InterpolateType p_interpolation_type, Object *p_object, NodePath *p_property, StringName *p_method, Variant p_initial_val, Variant p_final_val, real_t p_duration, TransitionType p_trans_type, EaseType p_ease_type, real_t p_delay);
protected:
bool _set(const StringName &p_name, const Variant &p_value);