You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-13 13:31:48 +00:00
Add const lvalue ref to editor/* container parameters
This commit is contained in:
@@ -99,7 +99,7 @@ class BoneMapperItem : public VBoxContainer {
|
||||
protected:
|
||||
void _notification(int p_what);
|
||||
static void _bind_methods();
|
||||
virtual void _value_changed(const String &p_property, Variant p_value, const String &p_name, bool p_changing);
|
||||
virtual void _value_changed(const String &p_property, const Variant &p_value, const String &p_name, bool p_changing);
|
||||
virtual void create_editor();
|
||||
|
||||
public:
|
||||
@@ -179,9 +179,9 @@ class BoneMapper : public VBoxContainer {
|
||||
BONE_SEGREGATION_LEFT,
|
||||
BONE_SEGREGATION_RIGHT
|
||||
};
|
||||
bool is_match_with_bone_name(String p_bone_name, String p_word);
|
||||
int search_bone_by_name(Skeleton3D *p_skeleton, Vector<String> p_picklist, BoneSegregation p_segregation = BONE_SEGREGATION_NONE, int p_parent = -1, int p_child = -1, int p_children_count = -1);
|
||||
BoneSegregation guess_bone_segregation(String p_bone_name);
|
||||
bool is_match_with_bone_name(const String &p_bone_name, const String &p_word);
|
||||
int search_bone_by_name(Skeleton3D *p_skeleton, const Vector<String> &p_picklist, BoneSegregation p_segregation = BONE_SEGREGATION_NONE, int p_parent = -1, int p_child = -1, int p_children_count = -1);
|
||||
BoneSegregation guess_bone_segregation(const String &p_bone_name);
|
||||
void auto_mapping_process(Ref<BoneMap> &p_bone_map);
|
||||
void _run_auto_mapping();
|
||||
#endif // MODULE_REGEX_ENABLED
|
||||
@@ -189,8 +189,8 @@ class BoneMapper : public VBoxContainer {
|
||||
protected:
|
||||
void _notification(int p_what);
|
||||
static void _bind_methods();
|
||||
virtual void _value_changed(const String &p_property, Variant p_value, const String &p_name, bool p_changing);
|
||||
virtual void _profile_changed(const String &p_property, Variant p_value, const String &p_name, bool p_changing);
|
||||
virtual void _value_changed(const String &p_property, const Variant &p_value, const String &p_name, bool p_changing);
|
||||
virtual void _profile_changed(const String &p_property, const Variant &p_value, const String &p_name, bool p_changing);
|
||||
|
||||
public:
|
||||
void set_current_group_idx(int p_group_idx);
|
||||
|
||||
Reference in New Issue
Block a user