Merge pull request #91164 from Calinou/shader-globals-editor-allow-compressed-texture-array-types
Allow compressed texture array and cubemap types in shader globals editor
This commit is contained in:
commit
0510191e49
1 changed files with 2 additions and 2 deletions
|
@ -219,7 +219,7 @@ protected:
|
||||||
case RS::GLOBAL_VAR_TYPE_SAMPLER2DARRAY: {
|
case RS::GLOBAL_VAR_TYPE_SAMPLER2DARRAY: {
|
||||||
pinfo.type = Variant::OBJECT;
|
pinfo.type = Variant::OBJECT;
|
||||||
pinfo.hint = PROPERTY_HINT_RESOURCE_TYPE;
|
pinfo.hint = PROPERTY_HINT_RESOURCE_TYPE;
|
||||||
pinfo.hint_string = "Texture2DArray";
|
pinfo.hint_string = "Texture2DArray,CompressedTexture2DArray";
|
||||||
} break;
|
} break;
|
||||||
case RS::GLOBAL_VAR_TYPE_SAMPLER3D: {
|
case RS::GLOBAL_VAR_TYPE_SAMPLER3D: {
|
||||||
pinfo.type = Variant::OBJECT;
|
pinfo.type = Variant::OBJECT;
|
||||||
|
@ -229,7 +229,7 @@ protected:
|
||||||
case RS::GLOBAL_VAR_TYPE_SAMPLERCUBE: {
|
case RS::GLOBAL_VAR_TYPE_SAMPLERCUBE: {
|
||||||
pinfo.type = Variant::OBJECT;
|
pinfo.type = Variant::OBJECT;
|
||||||
pinfo.hint = PROPERTY_HINT_RESOURCE_TYPE;
|
pinfo.hint = PROPERTY_HINT_RESOURCE_TYPE;
|
||||||
pinfo.hint_string = "Cubemap";
|
pinfo.hint_string = "Cubemap,CompressedCubemap";
|
||||||
} break;
|
} break;
|
||||||
default: {
|
default: {
|
||||||
} break;
|
} break;
|
||||||
|
|
Loading…
Reference in a new issue