mirror of
				https://github.com/godotengine/godot.git
				synced 2025-10-31 05:31:01 +00:00 
			
		
		
		
	Fix functions name color in visual shader code preview and expressions
This commit is contained in:
		
							parent
							
								
									cf03f90fa8
								
							
						
					
					
						commit
						a33171ad23
					
				
					 1 changed files with 4 additions and 0 deletions
				
			
		|  | @ -873,6 +873,7 @@ void VisualShaderEditor::_update_graph() { | |||
| 			Color keyword_color = EDITOR_GET("text_editor/highlighting/keyword_color"); | ||||
| 			Color comment_color = EDITOR_GET("text_editor/highlighting/comment_color"); | ||||
| 			Color symbol_color = EDITOR_GET("text_editor/highlighting/symbol_color"); | ||||
| 			Color function_color = EDITOR_GET("text_editor/highlighting/function_color"); | ||||
| 
 | ||||
| 			expression_box->set_syntax_highlighter(expression_syntax_highlighter); | ||||
| 			expression_box->add_theme_color_override("background_color", background_color); | ||||
|  | @ -884,6 +885,7 @@ void VisualShaderEditor::_update_graph() { | |||
| 			expression_box->add_theme_font_override("font", get_theme_font("expression", "EditorFonts")); | ||||
| 			expression_box->add_theme_color_override("font_color", text_color); | ||||
| 			expression_syntax_highlighter->set_symbol_color(symbol_color); | ||||
| 			expression_syntax_highlighter->set_function_color(function_color); | ||||
| 			expression_syntax_highlighter->add_color_region("/*", "*/", comment_color, false); | ||||
| 			expression_syntax_highlighter->add_color_region("//", "", comment_color, false); | ||||
| 
 | ||||
|  | @ -1740,6 +1742,7 @@ void VisualShaderEditor::_notification(int p_what) { | |||
| 			Color keyword_color = EDITOR_GET("text_editor/highlighting/keyword_color"); | ||||
| 			Color comment_color = EDITOR_GET("text_editor/highlighting/comment_color"); | ||||
| 			Color symbol_color = EDITOR_GET("text_editor/highlighting/symbol_color"); | ||||
| 			Color function_color = EDITOR_GET("text_editor/highlighting/function_color"); | ||||
| 
 | ||||
| 			preview_text->add_theme_color_override("background_color", background_color); | ||||
| 
 | ||||
|  | @ -1750,6 +1753,7 @@ void VisualShaderEditor::_notification(int p_what) { | |||
| 			preview_text->add_theme_font_override("font", get_theme_font("expression", "EditorFonts")); | ||||
| 			preview_text->add_theme_color_override("font_color", text_color); | ||||
| 			syntax_highlighter->set_symbol_color(symbol_color); | ||||
| 			syntax_highlighter->set_function_color(function_color); | ||||
| 			syntax_highlighter->clear_color_regions(); | ||||
| 			syntax_highlighter->add_color_region("/*", "*/", comment_color, false); | ||||
| 			syntax_highlighter->add_color_region("//", "", comment_color, false); | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Yuri Roubinsky
						Yuri Roubinsky