Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-05-01 | Merge pull request #16649 from ibrahn/visual-script-release-crash | Rémi Verschelde | |
fix for segfault when using CallBasic in visual script on release build | |||
2018-05-01 | Merge pull request #16977 from SASUPERNOVA/master | Rémi Verschelde | |
Created a new function named get_element in GridContainer. This funct… | |||
2018-05-01 | Merge pull request #18544 from marcelofg55/pa_lock | Rémi Verschelde | |
Prevent PulseAudio driver to lock its mutex for too long | |||
2018-05-01 | Fix #17019 : overrides with unknown base setting | Manuel Moos | |
If at the time of the _GLOBAL_DEF call a setting itself was unknown, the function would always return the supplied default value instead of checking for overrides. This commit changes that, lookup now always happens which correctly takes overrides into account. | |||
2018-05-01 | Prevent PulseAudio driver to lock its mutex for too long | Marcelo Fernandez | |
2018-05-01 | Revert "Added a more specific error message on export" | Rémi Verschelde | |
This reverts commit 00c689d625d0243577c225612aa86aa6a85274c4. Reason: "Missing template" is just one possible explanation for `err` being != OK here, it does not make sense to hardcode it in the generic error message (and break translations doing so). | |||
2018-05-01 | Merge pull request #18434 from YeldhamDev/animation_autoplay_fix | Rémi Verschelde | |
Fixed deleting an animation marked to autoplay in the editor affecting the creation of one with the same name | |||
2018-05-01 | Merge pull request #18428 from groud/fix_input | Rémi Verschelde | |
Fixing input strength and the impossibility to erase action events | |||
2018-05-01 | Fix Node2D::global_scale's PropertyInfo type | Rémi Verschelde | |
Was missed in #18391. | |||
2018-05-01 | Merge pull request #18355 from ShyRed/fix18344 | Rémi Verschelde | |
Keep alpha when changing h, s or v Color property in GDScript | |||
2018-05-01 | Merge pull request #18348 from rfht/master | Rémi Verschelde | |
fix clang6 assignment error | |||
2018-05-01 | Merge pull request #18380 from groud/fix_spacebar_panning | Rémi Verschelde | |
Fixes 2d editor panning not working | |||
2018-05-01 | Merge pull request #18382 from groud/fix_gridcontainer_children_visibility | Rémi Verschelde | |
Fix GridContainer's children visibility breaking the layout | |||
2018-05-01 | Merge pull request #18334 from Faless/coverity_net | Rémi Verschelde | |
Various coverity scan fixes, WS FreeBSD fixes | |||
2018-05-01 | Merge pull request #18321 from Crazy-P/Fixes-logically-dead-code | Rémi Verschelde | |
Fixes logically dead code (Coverity) | |||
2018-04-30 | Merge pull request #18370 from KidRigger/master | Max Hilbrunner | |
Adds support for CMD+Left and CMD+Right on MacOS | |||
2018-04-30 | Merge pull request #18373 from KidRigger/working | Max Hilbrunner | |
Replaces CTRL with CMD in TileMapEditor for MacOS. | |||
2018-04-30 | Merge pull request #18381 from groud/fix_hard_to_select_node2d | Max Hilbrunner | |
Fixes hard to select Node2D | |||
2018-04-30 | Merge pull request #18482 from profan/master | Max Hilbrunner | |
Fix shared lib loading for Unix, dlopen expects leading ./ for relative paths. | |||
2018-04-30 | Merge pull request #18489 from Calinou/tweak-property-hint-ranges | Max Hilbrunner | |
Tweak the property hint ranges of caret blink and line length guideline | |||
2018-04-30 | Merge pull request #18506 from AlexHolly/export-more-specific-error-message | Max Hilbrunner | |
Added a more specific error message on export | |||
2018-04-30 | Merge pull request #18515 from djrm/pr_icons | Max Hilbrunner | |
Updated icons, add CSG icons | |||
2018-04-30 | Merge pull request #18491 from Calinou/custom-lineedit-secret-character | Max Hilbrunner | |
Make the LineEdit "secret" character customizable | |||
2018-04-30 | Merge pull request #18523 from hpvb/fix-clang-lto | Max Hilbrunner | |
Fix lto builds on clang compilers | |||
2018-04-30 | Merge pull request #18284 from mhilbrunner/pck-version | Max Hilbrunner | |
Fix .pck exporting via PCKPacker | |||
2018-04-30 | Merge pull request #18522 from hpvb/fix-find-msbuild | Max Hilbrunner | |
Fix msbuild with a msvc 'tools only' install | |||
2018-04-30 | Fix lto builds on clang compilers | Hein-Pieter van Braam | |
The --no-lto option only works on GCC compilers. This breaks LTO builds on MacOS and iPhone when building the gdnative wrappers. -fno-lto works on both brands of compilers. | |||
2018-04-30 | Fix msbuild with a msvc 'tools only' install | Hein-Pieter van Braam | |
Taken from https://github.com/Microsoft/vswhere/wiki/Find-MSBuild without '-products *' vswhere does not locate msbuild when installing a tools-only (no IDE) version of the microsoft compilers. | |||
2018-04-29 | Add option to renormalize mipmaps when generating them for normalmaps. | Juan Linietsky | |
Reduces some aliasing. | |||
2018-04-30 | Make the LineEdit "secret" character customizable | Hugo Locurcio | |
2018-04-30 | Merge pull request #18511 from romlok/lookingatyoukid | Max Hilbrunner | |
[DOCS] Clarify look_at and looking_at | |||
2018-04-29 | Updated icons, | Daniel J. Ramirez | |
Added CSG icons and other action icons [ci-skip] | |||
2018-04-29 | Merge pull request #18455 from neikeq/export-pck-zip-debug | Hein-Pieter van Braam | |
Make 'Export PCK/ZIP' work well with EditorExportPlugin | |||
2018-04-29 | [DOCS] Clarify look_at and looking_at | Mel Collins | |
2018-04-29 | Added a more specific error message on export | Alexander Holland | |
2018-04-28 | Merge pull request #18494 from neikeq/v | Ignacio Etcheverry | |
Mono: BindingsGenerator enum fixes | |||
2018-04-28 | Mono: BindingsGenerator enum fixes | Ignacio Etcheverry | |
- Make enums have an unique signature name of int. This means that when generating internal methods, there is no difference between different enums types nor between enums and int. This way enums can re-use internal methods. - Make type resolver fallback to int if a type is not found and it's an enum. | |||
2018-04-28 | Merge pull request #18425 from RandomShaper/fix-theme-editor-samples | Hein-Pieter van Braam | |
Fix theme editor sample widgets | |||
2018-04-28 | Tweak the property hint ranges of caret blink and line length guideline | Hugo Locurcio | |
This allows for more precise adjustments. | |||
2018-04-28 | Add poly triangulation order check, ensures faces do not flip on different order | Juan Linietsky | |
2018-04-28 | -Changed how operators work, any shape can operate on any other | Juan Linietsky | |
-Added some break condition for bad poly data to avoid editor freezes | |||
2018-04-28 | Fix how snapping is applied to 3D polygon editing, make it more friendly. | Juan Linietsky | |
2018-04-28 | Avoid CSG freeze condition on degenerates | Juan Linietsky | |
2018-04-28 | GDNative Unix: fix shared lib loading, dlopen expects leading ./ to ↵ | Robin Hübner | |
interpret as relative path. | |||
2018-04-28 | Do not crash if the polygon is invalid | Juan Linietsky | |
2018-04-28 | Reduce false positives in interior detection by adding a small offset to ↵ | Juan Linietsky | |
raycast, fixes #18476 | |||
2018-04-27 | CSG Support for Godot! | Juan Linietsky | |
-Missing Icons -Missing freezing option (for baking light and faster load) -Missing a way to export from Godot (GLTF2?) -Probably buggy (may freeze editor, can be worked around easily, but let me know if this happens so it's easier to catch bugs) Happy testing! | |||
2018-04-27 | Made the Pin button disable when no AnimationPlayer is selected. | Michael Alexsander Silva Dias | |
2018-04-27 | Fixed deleting an animation marked to autoplay in the editor affecting the ↵ | Michael Alexsander Silva Dias | |
creation of one with the same name. | |||
2018-04-27 | Fix theme editor sample widgets | Pedro J. Estébanez | |