You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-04 12:00:25 +00:00
Fix default values on virtual classes causing errors in projects
This commit is contained in:
@@ -335,7 +335,7 @@ static Variant get_documentation_default_value(const StringName &p_class_name, c
|
||||
Variant default_value = Variant();
|
||||
r_default_value_valid = false;
|
||||
|
||||
if (ClassDB::can_instantiate(p_class_name)) { // Keep this condition in sync with ClassDB::class_get_default_property_value.
|
||||
if (ClassDB::can_instantiate(p_class_name) && !ClassDB::is_virtual(p_class_name)) { // Keep this condition in sync with ClassDB::class_get_default_property_value.
|
||||
default_value = ClassDB::class_get_default_property_value(p_class_name, p_property_name, &r_default_value_valid);
|
||||
} else {
|
||||
// Cannot get default value of classes that can't be instantiated
|
||||
|
||||
Reference in New Issue
Block a user