You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-20 14:45:44 +00:00
Make _validate_property a multilevel method
This commit is contained in:
@@ -75,7 +75,7 @@ private:
|
||||
Dictionary _get_argument_cache() const;
|
||||
|
||||
protected:
|
||||
virtual void _validate_property(PropertyInfo &property) const override;
|
||||
void _validate_property(PropertyInfo &p_property) const;
|
||||
|
||||
static void _bind_methods();
|
||||
|
||||
@@ -187,7 +187,7 @@ private:
|
||||
void _adjust_input_index(PropertyInfo &pinfo) const;
|
||||
|
||||
protected:
|
||||
virtual void _validate_property(PropertyInfo &property) const override;
|
||||
void _validate_property(PropertyInfo &p_property) const;
|
||||
|
||||
static void _bind_methods();
|
||||
|
||||
@@ -275,7 +275,7 @@ private:
|
||||
void _adjust_input_index(PropertyInfo &pinfo) const;
|
||||
|
||||
protected:
|
||||
virtual void _validate_property(PropertyInfo &property) const override;
|
||||
void _validate_property(PropertyInfo &p_property) const;
|
||||
|
||||
static void _bind_methods();
|
||||
|
||||
@@ -330,7 +330,7 @@ private:
|
||||
StringName name;
|
||||
|
||||
protected:
|
||||
virtual void _validate_property(PropertyInfo &property) const override;
|
||||
void _validate_property(PropertyInfo &p_property) const;
|
||||
|
||||
static void _bind_methods();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user