diff options
| author | Wilson E. Alvarez | 2017-08-12 12:52:50 -0400 |
|---|---|---|
| committer | Wilson E. Alvarez | 2017-08-12 15:12:49 -0400 |
| commit | 428f03cf06d3841b2a593f46aa42912ef5c82f3c (patch) | |
| tree | c006361e19c5ecbc02534496f936d1a4a5ad6ef3 /editor/plugins/animation_player_editor_plugin.h | |
| parent | 5052cb2b9104f57d0ff38d80da50bbeceb926e6f (diff) | |
| download | godot-428f03cf06d3841b2a593f46aa42912ef5c82f3c.tar.gz godot-428f03cf06d3841b2a593f46aa42912ef5c82f3c.tar.zst godot-428f03cf06d3841b2a593f46aa42912ef5c82f3c.zip | |
Updated function argument names
Diffstat (limited to 'editor/plugins/animation_player_editor_plugin.h')
| -rw-r--r-- | editor/plugins/animation_player_editor_plugin.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/editor/plugins/animation_player_editor_plugin.h b/editor/plugins/animation_player_editor_plugin.h index ceaa73569..bcf40f52d 100644 --- a/editor/plugins/animation_player_editor_plugin.h +++ b/editor/plugins/animation_player_editor_plugin.h @@ -155,7 +155,7 @@ class AnimationPlayerEditor : public VBoxContainer { void _animation_player_changed(Object *p_pl); void _animation_key_editor_seek(float p_pos, bool p_drag); - void _animation_key_editor_anim_len_changed(float p_new); + void _animation_key_editor_anim_len_changed(float p_len); void _animation_key_editor_anim_step_changed(float p_len); void _unhandled_key_input(const Ref<InputEvent> &p_ev); @@ -198,8 +198,8 @@ public: virtual String get_name() const { return "Anim"; } bool has_main_screen() const { return false; } - virtual void edit(Object *p_node); - virtual bool handles(Object *p_node) const; + virtual void edit(Object *p_object); + virtual bool handles(Object *p_object) const; virtual void make_visible(bool p_visible); AnimationPlayerEditorPlugin(EditorNode *p_node); |
