mirror of
https://github.com/godotengine/godot.git
synced 2024-12-09 10:09:20 +08:00
Merge pull request #38565 from nekomatata/export-default-values
Fixed export var default value in PackedScene when script is not loaded in editor
This commit is contained in:
commit
f6efa78173
@ -469,6 +469,11 @@ Error SceneState::_parse_node(Node *p_owner, Node *p_node, int p_parent_idx, Map
|
||||
p_node->get_property_list(&plist);
|
||||
StringName type = p_node->get_class();
|
||||
|
||||
Ref<Script> script = p_node->get_script();
|
||||
if (script.is_valid()) {
|
||||
script->update_exports();
|
||||
}
|
||||
|
||||
for (List<PropertyInfo>::Element *E = plist.front(); E; E = E->next()) {
|
||||
if (!(E->get().usage & PROPERTY_USAGE_STORAGE)) {
|
||||
continue;
|
||||
@ -484,7 +489,6 @@ Error SceneState::_parse_node(Node *p_owner, Node *p_node, int p_parent_idx, Map
|
||||
isdefault = bool(Variant::evaluate(Variant::OP_EQUAL, value, default_value));
|
||||
}
|
||||
|
||||
Ref<Script> script = p_node->get_script();
|
||||
if (!isdefault && script.is_valid() && script->get_property_default_value(name, default_value)) {
|
||||
isdefault = bool(Variant::evaluate(Variant::OP_EQUAL, value, default_value));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user