mirror of
				https://github.com/godotengine/godot.git
				synced 2025-10-31 13:41:03 +00:00 
			
		
		
		
	Little Bits
-=-=-=-=-=- -fix duplicate function bug when creating script callback in editor -fix bug where hiding lights does not work -fix 2D audio listener bug (romulox_x reported) -fix exported properties with inheritance bug -fix timer autostart (make it not work on editor) -reactivate first camara found if viewport runs out of active camera -option to hide gizmos in viewport -changed skeleton gizmo because it sucks -Make convex shapes using CollisionShape visible (use quickhull class) -fix up menu when editing a mesh, to export collision, navmesh, convex, etc. from it. -make a menu option to show SRGB in 3D editor views by default -make option to edit default light direction in viewport settings -make option to edit default ambient light in viewport settings -make software conversion of linear->RGB if hardware support not found
This commit is contained in:
		
							parent
							
								
									37354da5b0
								
							
						
					
					
						commit
						948fd83cdd
					
				
					 30 changed files with 1063 additions and 86 deletions
				
			
		|  | @ -1286,7 +1286,7 @@ void ScriptEditor::_add_callback(Object *p_obj, const String& p_function, const | |||
| 			continue; | ||||
| 
 | ||||
| 		String code = ste->get_text_edit()->get_text(); | ||||
| 		int pos = script->get_language()->find_function(code,p_function); | ||||
| 		int pos = script->get_language()->find_function(p_function,code); | ||||
| 		if (pos==-1) { | ||||
| 			//does not exist
 | ||||
| 
 | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Juan Linietsky
						Juan Linietsky