mirror of
				https://github.com/godotengine/godot.git
				synced 2025-10-31 21:51:22 +00:00 
			
		
		
		
	Return shader parse error when using 'hint_normal_roughness_texture' and not using the Forward+ backend
This commit is contained in:
		
							parent
							
								
									46424488ed
								
							
						
					
					
						commit
						2a93681334
					
				
					 1 changed files with 2 additions and 2 deletions
				
			
		|  | @ -8800,8 +8800,8 @@ Error ShaderLanguage::_parse_shader(const HashMap<StringName, FunctionInfo> &p_f | |||
| 									new_hint = ShaderNode::Uniform::HINT_NORMAL_ROUGHNESS_TEXTURE; | ||||
| 									--texture_uniforms; | ||||
| 									--texture_binding; | ||||
| 									if (OS::get_singleton()->get_current_rendering_method() == "gl_compatibility") { | ||||
| 										_set_error(RTR("'hint_normal_roughness_texture' is not supported in gl_compatibility shaders.")); | ||||
| 									if (OS::get_singleton()->get_current_rendering_method() != "forward_plus") { | ||||
| 										_set_error(RTR("'hint_normal_roughness_texture' is only available when using the Forward+ backend.")); | ||||
| 										return ERR_PARSE_ERROR; | ||||
| 									} | ||||
| 									if (String(shader_type_identifier) != "spatial") { | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 lewiji
						lewiji