summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-04-01Merge pull request #26097 from ↵Rémi Verschelde
danielspaniol/25955-wrong-unreachable-warning-after-returning-from-matchs-wildcard-pattern Fix: Wrong unreachable warning after returning from match's wildcard pattern #25955
2019-04-01Merge pull request #26701 from qarmin/do_not_lost_focusRémi Verschelde
Do not lose focus when moving through scene tree
2019-04-01Merge pull request #27117 from Faless/editor/asset_lib_image_errorRémi Verschelde
Enabled logging of failed image download.
2019-04-01Merge pull request #26958 from bruvzg/macos_hidpi_fixesRémi Verschelde
Fix hiDPI scaling support in `get_real_window_size` and `set_window.size`
2019-04-01Merge pull request #26970 from KoBeWi/custom_node_is_now_other_nodeRémi Verschelde
Changed 'Custom Node' to 'Other Node' to be less confusing
2019-04-01Merge pull request #27080 from YeldhamDev/tilemap_remove_rect_dirtyRémi Verschelde
Make size cache dirty when removing tiles in 'TileMap'
2019-03-30Drop mouseover when mouse not in the windowPedro J. Estébanez
Not that this is critical, but it makes behavior of GUI and 2D/3D picking consistent among them. This also contributes to dropping GUI focus when the mouse leaves the window (in addition to when it loses focus).
2019-03-29Merge pull request #27497 from neikeq/dynamicmetaobjectIgnacio Roldán Etcheverry
C#: Add DynamicGodotObject class
2019-03-29C#: Add DynamicGodotObject classIgnacio Etcheverry
Expands to Object.call, Object.set and Object.get for accessing members. This means it can also access members from scripts written in other languages, like GDScript.
2019-03-28i18n: Sync translations with WeblateRémi Verschelde
Also sync translation template.
2019-03-27Merge pull request #27461 from avencherus/atan2-docRémi Verschelde
Corrects small typo in atan2() documentation.
2019-03-27Merge pull request #27429 from cbscribe/kcc_classref_fixesRémi Verschelde
[DOC] Physics[2D]DirectBodyState updates
2019-03-27Merge pull request #27388 from KidRigger/masterRémi Verschelde
Prevents crash on loading unrecognized resources.
2019-03-27Merge pull request #27383 from SpechtMagnus/masterRémi Verschelde
TileMap: Fixed unfinished max_lines draw handling for freeze/crash avoidance.
2019-03-27Merge pull request #27348 from KoBeWi/kinematic_documentationRémi Verschelde
Better documentation for some move_and_slide parameters
2019-03-27Corrects small typo in atan2() documentation.Jared
2019-03-27Merge pull request #27200 from piyushdagar/newRémi Verschelde
Fixed CollisionObject signals do not trigger on Area
2019-03-27Merge pull request #27184 from karroffel/gdnative-api-gen-fixesRémi Verschelde
fix GDNative binding generation for object types
2019-03-27Merge pull request #27182 from goodyttoor/gltf_orderRémi Verschelde
Fix order of transformation in GLTF import
2019-03-27Merge pull request #27162 from guilhermefelipecgs/fix_26540Rémi Verschelde
StateMachine: Fix sync mode
2019-03-27Merge pull request #27128 from bojidar-bg/27111-gdscript-confounding-classRémi Verschelde
Fix GDScriptCompiler bugging out with identically-named inner class
2019-03-27Merge pull request #27088 from fire/scaling_texture_button_focusRémi Verschelde
Fix scaling issue for texture button focus texture.
2019-03-27Merge pull request #27017 from qarmin/fix_inspector_updateRémi Verschelde
Fix inspector update after changing anchor from buttons
2019-03-27Merge pull request #27259 from humblers/fix-cpuparticlesRémi Verschelde
Ensure non-emitting particles not processed on entering tree
2019-03-26Add a "Request Docs" button to code editor.Juan Linietsky
2019-03-25[DOC] Physics[2D]DirectBodyState updatesChris Bradfield
2019-03-25Merge pull request #27320 from karroffel/gdnative-terminate-error-printThomas Herzog
[GDNative] various NativeScript fixes around editor functionality
2019-03-25Prevents crash on loading unrecognized resources.Anish
Editor crashes on trying to load resources with no loaders. Simple check on the resource loader prevents using a null resource loader. Fixes: #27385
2019-03-24Fixed unfinished max_lines handling for crash avoidance.Magnus Specht
2019-03-23Merge pull request #27359 from neikeq/who-reads-docs-anywayIgnacio Roldán Etcheverry
C#: Bindings generator now translates BBCode docs to XML comments
2019-03-23C#: Bindings generator now translates BBCode docs to XML commentsIgnacio Etcheverry
2019-03-23Better documentation for some move_and_slide parametersTomasz Chabora
2019-03-22[GDNative] fix NativeScript leak in editorthomas.herzog
2019-03-22[GDNative] remove spam at editor unfocus when using NativeScriptthomas.herzog
2019-03-20Revert accidental commitsPedro J. Estébanez
This reverts commit fb37284c027b494ed3ec21124001fcb729f42cc4. This reverts commit 4db0f51b9aa76cfc7649787fe1970af606ce8dab.
2019-03-20Create live view dock [wip]Pedro J. Estébanez
2019-03-20Create class for shared memory blocks [wip]Pedro J. Estébanez
2019-03-20Merge pull request #27270 from shartte/fix-generics-parsingIgnacio Roldán Etcheverry
Fix parsing of generic type declarations in C# source files
2019-03-20Merge pull request #27271 from shartte/fix-msbuild-detectionIgnacio Roldán Etcheverry
Add support for new MSBuild directory naming introduced in VS 2019
2019-03-20Add support for new MSBuild directory naming introduced in VS 2019.Sebastian Hartte
2019-03-20Fix parsing of generic type declarations in C# source files.Sebastian Hartte
2019-03-20Ensure non-emitting particles not processed on entering treeDaeil Kim
Also removed non-active CPUParticles(3d) from render list Fixes #27066
2019-03-19Fix inspector update after changing anchor via buttonsqarmin
2019-03-18Merge pull request #27205 from Kanabenki/set-friction-bounce-checkRémi Verschelde
Add missing check for 2d physics bounce and friction setters
2019-03-18Merge pull request #27180 from Paulb23/script_editor_edit_line_0Rémi Verschelde
Fix script editor attempting to set current line to -1 on script open
2019-03-18Add missing check for 2d physics bounce and friction settersKanabenki
The override check was already present for 3d physics but missing for 2d
2019-03-18Fixed CollisionObject signals do not trigger on Areapiyushdagar
2019-03-17fix GDNative binding generation for object typeskarroffel
2019-03-18Fix order of transformation in GLTF import Vivatchai Kaveeta
From the gltf 2 spec, the order is R * S. Previously we did S * R, which broke some mesh with non-uniform scale. Fix #23356, Fix #14725
2019-03-17Fix script editor attempting to set current line to -1 on script openPaulb23