| 692 | } |
| 693 | |
| 694 | Ref<ImportInfo> ImportInfoDummy::create_dummy(const String &p_path) { |
| 695 | Ref<ImportInfoDummy> iinfo = memnew(ImportInfoDummy); |
| 696 | if (iinfo->_load(p_path) != OK) { |
| 697 | return Ref<ImportInfo>(); |
| 698 | } |
| 699 | return iinfo; |
| 700 | } |
| 701 | |
| 702 | Error ImportInfoRemap::_load(const String &p_path) { |
| 703 | Ref<ConfigFileCompat> cf; |