diff options
author | reduz <reduzio@gmail.com> | 2022-03-05 16:43:38 +0100 |
---|---|---|
committer | reduz <reduzio@gmail.com> | 2022-03-05 16:43:38 +0100 |
commit | ccd4cdfd8b505feef9bdb66f9a9f7eb2813464e7 (patch) | |
tree | a4537d12a8cfca9020e8254ca20008702dad6a4e /scene/3d | |
parent | ff65d33e8c278bfbbbad18f9db959b2bbe04f919 (diff) |
Rename StreamTexture* to CompressedTexture*
* Its not and will not be used for streaming.
* Streaming will be implemented in 4.1 and it will work different.
* It makes more sense to be called CompressedTexture since it imports and compresses texture files.
Diffstat (limited to 'scene/3d')
-rw-r--r-- | scene/3d/lightmap_gi.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/3d/lightmap_gi.cpp b/scene/3d/lightmap_gi.cpp index 68d2b91fad..07f41c0bf9 100644 --- a/scene/3d/lightmap_gi.cpp +++ b/scene/3d/lightmap_gi.cpp @@ -982,7 +982,7 @@ LightmapGI::BakeError LightmapGI::bake(Node *p_from_node, String p_image_data_pa } config->set_value("remap", "importer", "2d_array_texture"); - config->set_value("remap", "type", "StreamTexture2DArray"); + config->set_value("remap", "type", "CompressedTexture2DArray"); if (!config->has_section_key("params", "compress/mode")) { config->set_value("params", "compress/mode", 2); //user may want another compression, so leave it be } |