summaryrefslogtreecommitdiffstats
path: root/editor/import/resource_importer_csv_translation.h
diff options
context:
space:
mode:
authorJuan Linietsky <juan@godotengine.org>2019-02-26 18:43:37 -0300
committerJuan Linietsky <juan@godotengine.org>2019-02-26 18:45:06 -0300
commitf669ebeeaf75a00b4c66dc92f62bd5030cb11660 (patch)
tree8673a26d3087fd9885358bc64161e4445992800e /editor/import/resource_importer_csv_translation.h
parent3b0f3016609d4915b430738125b85a16188f1691 (diff)
downloadredot-engine-f669ebeeaf75a00b4c66dc92f62bd5030cb11660.tar.gz
-Properly handle missing ETC support on export
-Added ability for resource importers to save metadata -Added ability for resource importers to validate depending on project settings
Diffstat (limited to 'editor/import/resource_importer_csv_translation.h')
-rw-r--r--editor/import/resource_importer_csv_translation.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/import/resource_importer_csv_translation.h b/editor/import/resource_importer_csv_translation.h
index cf16826535..6785b68d87 100644
--- a/editor/import/resource_importer_csv_translation.h
+++ b/editor/import/resource_importer_csv_translation.h
@@ -48,7 +48,7 @@ public:
virtual void get_import_options(List<ImportOption> *r_options, int p_preset = 0) const;
virtual bool get_option_visibility(const String &p_option, const Map<StringName, Variant> &p_options) const;
- virtual Error import(const String &p_source_file, const String &p_save_path, const Map<StringName, Variant> &p_options, List<String> *r_platform_variants, List<String> *r_gen_files = NULL);
+ virtual Error import(const String &p_source_file, const String &p_save_path, const Map<StringName, Variant> &p_options, List<String> *r_platform_variants, List<String> *r_gen_files = NULL, Variant *r_metadata = NULL);
ResourceImporterCSVTranslation();
};