summaryrefslogtreecommitdiffstats
path: root/scene/resources
diff options
context:
space:
mode:
authorThaddeus Crews <repiteo@outlook.com>2024-11-11 14:18:29 -0600
committerThaddeus Crews <repiteo@outlook.com>2024-11-11 14:18:29 -0600
commit74645109c4be874538571406893231eb7247f18a (patch)
tree45f914e7d6b6b60f76a3bc9d5df59186fa6bec3b /scene/resources
parentc8ff7880524e28e4e025f4e4e633218694ffc058 (diff)
parenta4d1d36c85dfdc6f281380ca9557acf0d7e76ce2 (diff)
downloadredot-engine-74645109c4be874538571406893231eb7247f18a.tar.gz
Merge pull request #98767 from jadeharley2/master
Fix inability to set TextureLayeredRD as `TEXTURE_TYPE_CUBE` or `TEXTURE_TYPE_CUBE_ARRAY`
Diffstat (limited to 'scene/resources')
-rw-r--r--scene/resources/texture_rd.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/resources/texture_rd.cpp b/scene/resources/texture_rd.cpp
index 531dbcbe7e..8e7eeb0ff4 100644
--- a/scene/resources/texture_rd.cpp
+++ b/scene/resources/texture_rd.cpp
@@ -197,7 +197,7 @@ void TextureLayeredRD::_set_texture_rd_rid(RID p_texture_rd_rid) {
RS::TextureLayeredType rs_layer_type;
RD::TextureFormat tf = RD::get_singleton()->texture_get_format(p_texture_rd_rid);
- ERR_FAIL_COND(tf.texture_type != RD::TEXTURE_TYPE_2D_ARRAY);
+ ERR_FAIL_COND(tf.texture_type != RD::TEXTURE_TYPE_2D_ARRAY && tf.texture_type != RD::TEXTURE_TYPE_CUBE && tf.texture_type != RD::TEXTURE_TYPE_CUBE_ARRAY);
ERR_FAIL_COND(tf.depth > 1);
switch (layer_type) {
case LAYERED_TYPE_2D_ARRAY: {