Merge pull request #1757 from Repiteo/ci/version-bumps

CI: Various version bumps; sync with main repo
This commit is contained in:
David Snopek
2025-06-07 14:13:14 -05:00
committed by GitHub
13 changed files with 272 additions and 231 deletions

View File

@@ -161,7 +161,7 @@ bool Example::_property_can_revert(const StringName &p_name) const {
} else {
return false;
}
};
}
bool Example::_property_get_revert(const StringName &p_name, Variant &r_property) const {
if (p_name == StringName("property_from_list")) {
@@ -170,7 +170,7 @@ bool Example::_property_get_revert(const StringName &p_name, Variant &r_property
} else {
return false;
}
};
}
void Example::_validate_property(PropertyInfo &p_property) const {
String name = p_property.name;

View File

@@ -58,7 +58,7 @@ class ExampleMin : public Control {
GDCLASS(ExampleMin, Control);
protected:
static void _bind_methods(){};
static void _bind_methods() {}
};
class Example : public Control {