[Pluginscript] Fix not working exports in editor

(cherry picked from commit 380b85a32f)
This commit is contained in:
Emmanuel Leblond 2018-06-15 21:16:01 +02:00 committed by Rémi Verschelde
parent 69f08cd2cc
commit 3808544891

View file

@ -84,35 +84,20 @@ StringName PluginScript::get_instance_base_type() const {
}
void PluginScript::update_exports() {
// TODO
#ifdef TOOLS_ENABLED
#if 0
ASSERT_SCRIPT_VALID();
if (/*changed &&*/ placeholders.size()) { //hm :(
if (placeholders.size()) {
//update placeholders if any
Map<StringName, Variant> propdefvalues;
List<PropertyInfo> propinfos;
const String *props = (const String *)pybind_get_prop_list(_py_exposed_class);
for (int i = 0; props[i] != ""; ++i) {
const String propname = props[i];
pybind_get_prop_default_value(_py_exposed_class, propname.c_str(), (godot_variant *)&propdefvalues[propname]);
pybind_prop_info raw_info;
pybind_get_prop_info(_py_exposed_class, propname.c_str(), &raw_info);
PropertyInfo info;
info.type = (Variant::Type)raw_info.type;
info.name = propname;
info.hint = (PropertyHint)raw_info.hint;
info.hint_string = *(String *)&raw_info.hint_string;
info.usage = raw_info.usage;
propinfos.push_back(info);
}
get_script_property_list(&propinfos);
for (Set<PlaceHolderScriptInstance *>::Element *E = placeholders.front(); E; E = E->next()) {
E->get()->update(propinfos, propdefvalues);
E->get()->update(propinfos, _properties_default_values);
}
}
#endif
#endif
}
// TODO: rename p_this "p_owner" ?