aboutsummaryrefslogtreecommitdiff
path: root/scene/resources/texture.h
diff options
context:
space:
mode:
authorGeorge Marques2017-06-15 19:44:11 -0300
committerGeorge Marques2017-06-15 21:35:20 -0300
commite42d59f01e60b18752d1cb5ef0a631c55e75a1b4 (patch)
tree2699fa08b41a792096965717dce6be6b58487d0a /scene/resources/texture.h
parent7b1f1dbf37a06b4dd5922f843101fce8b980481c (diff)
downloadgodot-e42d59f.tar.gz
godot-e42d59f.tar.zst
godot-e42d59f.zip
Rename Godot-specific resource extensions
Diffstat (limited to 'scene/resources/texture.h')
-rw-r--r--scene/resources/texture.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/scene/resources/texture.h b/scene/resources/texture.h
index 9ee9588d2..3a0f466b4 100644
--- a/scene/resources/texture.h
+++ b/scene/resources/texture.h
@@ -226,7 +226,7 @@ VARIANT_ENUM_CAST(ImageTexture::Storage);
class AtlasTexture : public Texture {
GDCLASS(AtlasTexture, Texture);
- RES_BASE_EXTENSION("atex");
+ RES_BASE_EXTENSION("atlastex");
protected:
Ref<Texture> atlas;
@@ -265,7 +265,7 @@ public:
class LargeTexture : public Texture {
GDCLASS(LargeTexture, Texture);
- RES_BASE_EXTENSION("ltex");
+ RES_BASE_EXTENSION("largetex");
protected:
struct Piece {
@@ -312,7 +312,7 @@ public:
class CubeMap : public Resource {
GDCLASS(CubeMap, Resource);
- RES_BASE_EXTENSION("cbm");
+ RES_BASE_EXTENSION("cubemap");
public:
enum Storage {
@@ -393,7 +393,7 @@ VARIANT_ENUM_CAST(CubeMap::Storage);
class CurveTexture : public Texture {
GDCLASS(CurveTexture, Texture);
- RES_BASE_EXTENSION("cvtex");
+ RES_BASE_EXTENSION("curvetex");
private:
RID texture;