Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-11-28 | Merge pull request #33964 from aaronfranke/canvas-in-spatial-crash | Rémi Verschelde | |
Don't cast item to Spatial when checking if it's locked | |||
2019-11-28 | Don't cast item to Spatial when checking if it's locked | Aaron Franke | |
Not a necessary cast, and causes a crash any time it's not a Spatial. | |||
2019-11-28 | Merge pull request #32854 from cooperra/fix-wireless-adb-debugging | Rémi Verschelde | |
Fix Android deploy with Remote Debug or Network FS over Wi-Fi | |||
2019-11-28 | Merge pull request #33955 from Calinou/document-warning-unused-exclude | Rémi Verschelde | |
Document how to bypass the unused argument/variable warning in message | |||
2019-11-28 | Merge pull request #33952 from KoBeWi/not_my_fault | Rémi Verschelde | |
Fix box selection being cancelled immediately | |||
2019-11-28 | Merge pull request #33963 from clayjohn/GLES3-sky-mipmaps-on-mobile | Rémi Verschelde | |
Fix radiance map generation on mobile | |||
2019-11-27 | Fix radiance map generation on mobile | clayjohn | |
2019-11-27 | Document how to bypass the unused argument/variable warning in message | Hugo Locurcio | |
Note that prefixing with an underscore only works with unused arguments and local variables, not class variables and signals. This closes #26056. | |||
2019-11-27 | Merge pull request #33953 from marstaik/gltf_bugfix | Rémi Verschelde | |
Bugfix: Sanitize glTF importer Animation Names and do not set bone_pose | |||
2019-11-27 | Merge pull request #33945 from Calinou/doc-viewportcontainer-stretch | Rémi Verschelde | |
Document the `ViewportContainer.stretch_shrink` property | |||
2019-11-27 | Bugfix: Sanitize glTF importer Animation Names and do not set bone_pose | Marios Staikopoulos | |
2019-11-27 | Fix box selection being cancelled immediately | Tomasz Chabora | |
2019-11-27 | Merge pull request #33944 from x2f/patch-1 | Rémi Verschelde | |
Added more details in Timer.start() error message. | |||
2019-11-27 | Added more details in Timer.start() error message. | x2f | |
2019-11-27 | Merge pull request #33946 from NeoSpark314/remove_exr_dbgprint | Rémi Verschelde | |
Remove .exr saver debug print | |||
2019-11-27 | Remove .exr saver debug print | Holger Dammertz | |
2019-11-27 | Document the `ViewportContainer.stretch_shrink` property | Hugo Locurcio | |
2019-11-27 | VideoStreamGDNative: Fix playing video files without audio stream | marcosjouron | |
2019-11-27 | Merge pull request #33939 from KoBeWi/grideprecatedmap | Rémi Verschelde | |
Remove deprecated theme property from GridMap | |||
2019-11-27 | Remove deprecated theme property from GridMap | Tomasz Chabora | |
2019-11-27 | Merge pull request #33936 from HaSa1002/doc_popup | Rémi Verschelde | |
fix #33721 documenting popup behaviour | |||
2019-11-27 | Merge pull request #33921 from Faless/enet/no_relay | Rémi Verschelde | |
Add ENet option to disable server relaying. | |||
2019-11-27 | Add ENet option to disable server relaying. | Fabio Alessandrelli | |
It's useless when building fully authoritative servers, and prevents various kinds of abuse. | |||
2019-11-27 | document popup behaviour | HaSa1002 | |
2019-11-27 | Merge pull request #33933 from bojidar-bg/33932-ysort-disable-ub | Rémi Verschelde | |
Fix crash when disabling a YSort node | |||
2019-11-27 | Fix crash when disabling a YSort node | Bojidar Marinov | |
Fixes #33932 | |||
2019-11-27 | Merge pull request #33924 from volzhs/preview-dynamicfont | Rémi Verschelde | |
Show thumbnail for DynamicFont resource | |||
2019-11-27 | Merge pull request #33923 from Calinou/doc-gdscript-remove-type-hint | Rémi Verschelde | |
Remove type hint from the @GDScript class documentation | |||
2019-11-27 | Merge pull request #33922 from Calinou/sky-rotation-inspector-degrees-only | Rémi Verschelde | |
Only display Environment sky rotation in degrees in the Inspector | |||
2019-11-26 | Merge pull request #33920 from vnen/uwp-gles2-msaa | Rémi Verschelde | |
Use ANGLE multisample extensions for UWP | |||
2019-11-27 | Show thumbnail for DynamicFont resource | volzhs | |
2019-11-26 | Remove type hint from the @GDScript class documentation | Hugo Locurcio | |
The current consensus in the Godot documentation is to avoid using type hints unless they're relevant to the behavior explained. | |||
2019-11-26 | Only display Environment sky rotation in degrees in the Inspector | Hugo Locurcio | |
This makes it consistent with Spatial. | |||
2019-11-26 | Use ANGLE multisample extensions for UWP | George Marques | |
2019-11-26 | Merge pull request #33917 from Faless/enet/memleak | Rémi Verschelde | |
Fix memory leak in NetworkedMultiplayerENet. | |||
2019-11-26 | Fix memory leak in NetworkedMultiplayerENet. | Fabio Alessandrelli | |
Dynamically allocated ids of peers where not correctly freed when calling close_connection and disconnect_peer (with now=true). | |||
2019-11-26 | Merge pull request #33915 from touilleMan/issue-33913 | Rémi Verschelde | |
Revert faulty stripping of / in ProjectSettings::localize_path | |||
2019-11-26 | Revert "Fix localise_path method so that uncached scripts don't sometimes ↵ | Emmanuel Leblond | |
get loaded with two backslashes" This reverts commit 1342551664091c1ceb931ee45d9c43f09df5f1ff. | |||
2019-11-26 | Range: Remove min/max check added in #33908 | Rémi Verschelde | |
This wasn't a very good idea as it puts too strict requirements on how to set `min` and `max` values. For example, since the default min and max are 0 and 100, this triggers an error: ``` set_min(256) set_max(16384) ``` Since `min` will be higher than `max` temporarily. It can be worked around by setting max first, but it's not really intuitive. I'll relax the requirement as it's only a problem in `get_as_ratio`, which already has a check. Fix another min == max occurrence. | |||
2019-11-26 | Merge pull request #33899 from Scony/fix-script-check-only-exit-code | Rémi Verschelde | |
godot exit code improvement for --script --check-only, fixes #33895 | |||
2019-11-26 | godot exit code improvement for --script --check-only, fixes #33895 | Pawel Lampe | |
this commit causes godot executable to return non-zero exit code once invalid script is passed via --script during --check-only | |||
2019-11-26 | Merge pull request #33887 from dankan1890/old_search_fix | Rémi Verschelde | |
Fixed missing scrolling in Search Help Dialog. | |||
2019-11-26 | Merge pull request #33908 from akien-mga/range-fix-max-errors | Rémi Verschelde | |
Range: Fix cases where max was set to or below min value | |||
2019-11-26 | Range: Fix cases where max was set to or below min value | Rémi Verschelde | |
It will now raise an error whenever this happens so that we can fix these situations. `max == min` is not allowed as it could lead to divisions by zero in ratios, and `max < min` doesn't make much sense. Fixes #33907. | |||
2019-11-26 | Merge pull request #33892 from nekomatata/scirpt-editor-fixes | Rémi Verschelde | |
Fixes around ScriptEditor script list | |||
2019-11-25 | Merge pull request #33872 from zaksnet/yield-add-documentation | Rémi Verschelde | |
Add some missing documentation about yield() | |||
2019-11-25 | Merge pull request #33889 from clayjohn/specular_mode_bug | Rémi Verschelde | |
Fix bug where SpecularMode DISABLED is not cached | |||
2019-11-25 | Merge pull request #33888 from nekomatata/debug-menu-hide | Rémi Verschelde | |
Debug menu in editor doesn't hide on checkbox toggle | |||
2019-11-25 | Fixes around ScriptEditor script list | PouleyKetchoupp | |
- Fixed "Previous Script" shortcut not working (CTRL+SHIFT+<) - Fixed crash (integer division by zero) when using previous/next script shortcut with no script open - Fixed error when dropping a script file with no script open ERROR: ItemList::get_item_metadata: Index p_idx=-1 out of size (items.size()=0) At: scene\gui\item_list.cpp:257 | |||
2019-11-25 | Added missing documentation for yield() | Zak Stam | |
Added some missing documentation about yield() being able to wait for a function also. I cant believe something like that was missing from the docs, it would have saved me so much time (and others i assume). |