mirror of
https://github.com/godotengine/godot.git
synced 2024-11-27 09:16:35 +08:00
Merge pull request #74320 from bruce965/normal_roughness_texture_error_message
Error on hint_normal_roughness_texture and hint_depth_texture outside of spatial shader
This commit is contained in:
commit
fd6910a743
@ -8798,11 +8798,19 @@ Error ShaderLanguage::_parse_shader(const HashMap<StringName, FunctionInfo> &p_f
|
||||
_set_error(RTR("'hint_normal_roughness_texture' is not supported in gl_compatibility shaders."));
|
||||
return ERR_PARSE_ERROR;
|
||||
}
|
||||
if (String(shader_type_identifier) != "spatial") {
|
||||
_set_error(vformat(RTR("'hint_normal_roughness_texture' is not supported in '%s' shaders."), shader_type_identifier));
|
||||
return ERR_PARSE_ERROR;
|
||||
}
|
||||
} break;
|
||||
case TK_HINT_DEPTH_TEXTURE: {
|
||||
new_hint = ShaderNode::Uniform::HINT_DEPTH_TEXTURE;
|
||||
--texture_uniforms;
|
||||
--texture_binding;
|
||||
if (String(shader_type_identifier) != "spatial") {
|
||||
_set_error(vformat(RTR("'hint_depth_texture' is not supported in '%s' shaders."), shader_type_identifier));
|
||||
return ERR_PARSE_ERROR;
|
||||
}
|
||||
} break;
|
||||
case TK_FILTER_NEAREST: {
|
||||
new_filter = FILTER_NEAREST;
|
||||
|
Loading…
Reference in New Issue
Block a user