From f65c1ba2ecc5253907c2797f4b301bfb56f87a43 Mon Sep 17 00:00:00 2001 From: Relintai Date: Tue, 22 Oct 2019 21:02:12 +0200 Subject: [PATCH] Changed the saved extension for the importer. --- texture_resource/packer_image_resource.h | 2 +- texture_resource/packer_image_resource_importer.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/texture_resource/packer_image_resource.h b/texture_resource/packer_image_resource.h index 17235b5..7bb3454 100644 --- a/texture_resource/packer_image_resource.h +++ b/texture_resource/packer_image_resource.h @@ -8,7 +8,7 @@ class PackerImageResource : public Texture { GDCLASS(PackerImageResource, Texture); - RES_BASE_EXTENSION("tres"); + RES_BASE_EXTENSION("restex"); public: int get_width() const; diff --git a/texture_resource/packer_image_resource_importer.cpp b/texture_resource/packer_image_resource_importer.cpp index 08dde8e..cdcfecd 100644 --- a/texture_resource/packer_image_resource_importer.cpp +++ b/texture_resource/packer_image_resource_importer.cpp @@ -13,7 +13,7 @@ void PackerImageResourceImporter::get_recognized_extensions(List *p_exte } String PackerImageResourceImporter::get_save_extension() const { - return "tres"; + return "restex"; } String PackerImageResourceImporter::get_resource_type() const {