| 1254 | } |
| 1255 | |
| 1256 | Dictionary GDRESettings::get_cached_script_entry(const String &p_path) { |
| 1257 | if (!is_pack_loaded() || p_path.is_empty() || !script_cache.has(p_path)) { |
| 1258 | return Dictionary(); |
| 1259 | } |
| 1260 | return script_cache[p_path]; |
| 1261 | } |
| 1262 | |
| 1263 | bool GDRESettings::had_encryption_error() const { |
| 1264 | return error_encryption; |