Remove error messages

This commit is contained in:
Juan Linietsky 2018-06-21 18:46:17 -03:00
parent b80946ee0d
commit b76143bfde
2 changed files with 2 additions and 2 deletions

View File

@ -287,7 +287,7 @@ uint32_t Resource::hash_edited_version() const {
for (List<PropertyInfo>::Element *E = plist.front(); E; E = E->next()) {
if (E->get().type == Variant::OBJECT && E->get().hint == PROPERTY_HINT_RESOURCE_TYPE) {
if (E->get().usage & PROPERTY_USAGE_STORAGE && E->get().type == Variant::OBJECT && E->get().hint == PROPERTY_HINT_RESOURCE_TYPE) {
RES res = get(E->get().name);
if (res.is_valid()) {
hash = hash_djb2_one_32(res->hash_edited_version(), hash);

View File

@ -243,7 +243,7 @@ void AnimationNodeBlendSpaceEditor::_blend_space_gui_input(const Ref<InputEvent>
void AnimationNodeBlendSpaceEditor::_add_menu_type(int p_index) {
String type = menu->get_item_metadata(p_index);
print_line("type: " + type);
Object *obj = ClassDB::instance(type);
ERR_FAIL_COND(!obj);
AnimationNode *an = Object::cast_to<AnimationNode>(obj);