diff options
Diffstat (limited to 'scene/animation/animation_blend_space.h')
-rw-r--r-- | scene/animation/animation_blend_space.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/scene/animation/animation_blend_space.h b/scene/animation/animation_blend_space.h index 3eda3d2d39..921ad40981 100644 --- a/scene/animation/animation_blend_space.h +++ b/scene/animation/animation_blend_space.h @@ -70,8 +70,8 @@ public: void set_snap(const Vector2 &p_snap); Vector2 get_snap() const; - void set_blend_pos(const Vector2 &p_pos); - Vector2 get_blend_pos() const; + void set_blend_position(const Vector2 &p_pos); + Vector2 get_blend_position() const; void set_x_label(const String &p_label); String get_x_label() const; @@ -79,8 +79,8 @@ public: void set_y_label(const String &p_label); String get_y_label() const; - float process(float p_time, bool p_seek); - String get_caption() const; + virtual float process(float p_time, bool p_seek); + virtual String get_caption() const; Vector2 get_closest_point(const Vector2 &p_point); |