diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-08-22 17:32:02 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-22 17:32:02 +0200 |
commit | af76fb45675f23d1e7044d88dd873796b4786b14 (patch) | |
tree | 1ba601429e7fa6291a21b86472e63baa7bb0bdf3 /editor/plugins/skeleton_3d_editor_plugin.h | |
parent | 5193332d109776abf7acb56349fbdf053f0c117e (diff) | |
parent | b27fe6452d77c4e9e2a1f5400146c1b320e7fd64 (diff) |
Merge pull request #63486 from TokageItLab/init-poses
Diffstat (limited to 'editor/plugins/skeleton_3d_editor_plugin.h')
-rw-r--r-- | editor/plugins/skeleton_3d_editor_plugin.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/editor/plugins/skeleton_3d_editor_plugin.h b/editor/plugins/skeleton_3d_editor_plugin.h index 975b54fa77..9f610e1b7d 100644 --- a/editor/plugins/skeleton_3d_editor_plugin.h +++ b/editor/plugins/skeleton_3d_editor_plugin.h @@ -96,8 +96,8 @@ class Skeleton3DEditor : public VBoxContainer { friend class Skeleton3DEditorPlugin; enum SkeletonOption { - SKELETON_OPTION_INIT_ALL_POSES, - SKELETON_OPTION_INIT_SELECTED_POSES, + SKELETON_OPTION_RESET_ALL_POSES, + SKELETON_OPTION_RESET_SELECTED_POSES, SKELETON_OPTION_ALL_POSES_TO_RESTS, SKELETON_OPTION_SELECTED_POSES_TO_RESTS, SKELETON_OPTION_CREATE_PHYSICAL_SKELETON, @@ -148,7 +148,7 @@ class Skeleton3DEditor : public VBoxContainer { void create_editors(); - void init_pose(const bool p_all_bones); + void reset_pose(const bool p_all_bones); void pose_to_rest(const bool p_all_bones); void insert_keys(const bool p_all_bones); |