Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-09-20 | Merge pull request #22244 from DualMatrix/debuging_the_debugger | Rémi Verschelde | |
Fixed Objects no longer showing ID in debugger. | |||
2018-09-20 | Merge pull request #22268 from DualMatrix/highlight_no_save | Rémi Verschelde | |
Fixed syntax highlighting setting not being saved | |||
2018-09-20 | Merge pull request #22250 from ibrahn/shader_lang_vector_gotcha | Rémi Verschelde | |
Fixed an access after free in ShaderLanguage::_reduce_expression. | |||
2018-09-20 | Merge pull request #22270 from DualMatrix/locks_toggle_visible | Rémi Verschelde | |
Added ability to hide edit locks and groups in editor view | |||
2018-09-20 | Merge pull request #22278 from JFonS/fix_21293 | Rémi Verschelde | |
Fix selection box staying when editing a GridMap | |||
2018-09-20 | Merge pull request #22273 from JFonS/change_viewport_create_root | Rémi Verschelde | |
Change viewport type after using create root menu | |||
2018-09-20 | Fix selection box staying when editing a GridMap | JFonS | |
2018-09-20 | Added ability to hide edit lock and groups in editor view | DualMatrix | |
Added ability to hide edit lock and groups in editor view | |||
2018-09-20 | Fixed syntax highlighting setting not being saved | DualMatrix | |
Fixed syntax highlighting setting not being saved | |||
2018-09-20 | Merge pull request #22274 from JFonS/add_noise_textures | Rémi Verschelde | |
Fix typo in SimplexNoise documentation | |||
2018-09-20 | Fix typo in SimplexNoise documentation | JFonS | |
2018-09-20 | Change viewport type after using create root menu | JFonS | |
Change viewport type (2D/3D) according to the type of node just created from the "Create Root Node" menu. | |||
2018-09-20 | Merge pull request #22251 from aaronfranke/decimal-int-strip | Rémi Verschelde | |
Fix: Strip integer part in "decimals" | |||
2018-09-20 | Merge pull request #22267 from YeldhamDev/dict_array_type_fix | Rémi Verschelde | |
Properly setup EditorProperties in arrays and dictionaries | |||
2018-09-20 | Merge pull request #22269 from willnationsdev/fix-draw-call-editor-setting-saves | Rémi Verschelde | |
Fix EditorSettings saving on draw calls | |||
2018-09-20 | Merge pull request #22234 from DualMatrix/favorites_not_saved | Rémi Verschelde | |
Fixed favorite nodes list not being saved | |||
2018-09-19 | Fix: Strip integer part in "decimals" | Aaron Franke | |
Note: Core only. | |||
2018-09-19 | Fix EditorSettings saving on draw calls | willnationsdev | |
2018-09-19 | Properly setup EditorProperties in arrays and dictionaries | Michael Alexsander Silva Dias | |
2018-09-19 | Merge pull request #22260 from JFonS/add_noise_textures | Rémi Verschelde | |
Replace "persistance" with "persistence" | |||
2018-09-19 | Replace "persistance" with "persistence" | JFonS | |
Replace "persistance" with "persistence" in the simplex code. Also made some minor fixes to the docs. | |||
2018-09-19 | Merge pull request #22257 from AndreaCatania/fixes | Rémi Verschelde | |
Daily physics Fixes | |||
2018-09-19 | Merge pull request #22259 from Calinou/improve-simplexnoise-doc | Rémi Verschelde | |
Improve SimplexNoise documentation and fix typos | |||
2018-09-19 | Improve SimplexNoise documentation and fix typos | Hugo Locurcio | |
Spaces were added after code blocks to ensure correct rendering on the online class reference. | |||
2018-09-19 | Merge pull request #22255 from guilhermefelipecgs/fix_label_min_size | Rémi Verschelde | |
Fix Label::get_minimum_size not updating cache size for autowrap | |||
2018-09-19 | Added automatically set velocity when rigid is kinematic | Andrea Catania | |
2018-09-19 | Fix Label::get_minimum_size not updating cache size for autowrap | Guilherme Felipe | |
2018-09-19 | Added check to prevent contact signal to happen too early | Andrea Catania | |
2018-09-19 | GDScript: Revert extra deletion when creating instance | George Marques | |
Revert part of e4af39cbc00446b03d142882a69813e94f0838b2 that was causing a crash. | |||
2018-09-19 | GDScript: Error on empty blocks at the end of file | George Marques | |
Fix #15415 | |||
2018-09-19 | GDScript: Fix autocompletion inference after `is` check | George Marques | |
Fix #21915 | |||
2018-09-19 | GDScript: Fix infinite loop in autocomplete | George Marques | |
It happened when the definition of the variable contained the variable itself. | |||
2018-09-19 | GDScript: Forbid enum values to shadow constants | George Marques | |
- Don't allow constants to shadow parent members. - Fix a spelling mistake. Fix #13175 | |||
2018-09-19 | GDScript: Fix autocomplete crash when searching default values | George Marques | |
Fix #21700 | |||
2018-09-19 | GDScript: Allow Object constants to be used with qualifier | George Marques | |
Fix #15125 | |||
2018-09-19 | GDScript: Fix stack address test in compiler | George Marques | |
2018-09-19 | Fixed an access after free in ShaderLanguage::_reduce_expression. | Ibrahn Sahir | |
Passing an element reference of a vector to a push_back call to that same vector can cause an access after free. This is because push_back will resize the vector, reallocating if necessary, leaving the reference referring to the freed memory. Removed an instance of this usage here. | |||
2018-09-19 | Merge pull request #22247 from groud/fix_polygon_editor | Rémi Verschelde | |
Fixes polygon editor blocking other editor actions (move, scale...) | |||
2018-09-19 | Fixes polygon editor blocking other editor actions (move, scale...) | groud | |
2018-09-19 | Fixed Objects no longer showing ID in debugger. | DualMatrix | |
Fixed Objects no longer showing ID in debugger. | |||
2018-09-19 | Merge pull request #22242 from groud/fix_set_as_toplevel_in_editor | Rémi Verschelde | |
Fixes selection of toplevel CanvasItems in the editor | |||
2018-09-19 | Fixes selection of toplevel CanvasItems in the editor | groud | |
2018-09-19 | Merge pull request #22044 from Faless/uwp_miniupnpc | Rémi Verschelde | |
Update miniupnpc to use UWP compatible APIs. | |||
2018-09-19 | Merge pull request #22070 from capnm/fix_Input.set_default_cursor_shape_take2 | Rémi Verschelde | |
Fix set_default_cursor_shape interaction with Control nodes | |||
2018-09-19 | Merge pull request #22150 from Calinou/editor-theme-improved-checkboxes | Rémi Verschelde | |
Improve checkboxes in the default editor theme | |||
2018-09-19 | Merge pull request #22219 from akien-mga/color-float-to-8bit | Rémi Verschelde | |
Color: Fix rounding error converting from float to 8-bit | |||
2018-09-19 | Merge pull request #22096 from elasota/fix-visual-shader-colors | Rémi Verschelde | |
Fix visual shader color constants not retaining edits | |||
2018-09-19 | Fixed favorite nodes list not being saved | DualMatrix | |
Fixed favorite nodes list not being saved | |||
2018-09-18 | Color: Fix rounding error converting from float to 8-bit | Rémi Verschelde | |
Fixes #16736. | |||
2018-09-18 | SCons: Fix ARVR can_build arity | Rémi Verschelde | |