summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-10-08Merge pull request #42644 from Anutrix/uwp-duplicate-entry-fixRémi Verschelde
Fixed an issue in UWP export caused by duplicate entry for extensions in content types file.
2020-10-08Merge pull request #42622 from darkclif/masterRémi Verschelde
Docs change: More detailed description of StreamPeerTCP.is_connected_to_host()
2020-10-08Merge pull request #42621 from KoBeWi/into_nothingness_no_moreRémi Verschelde
Cancel rename if file does not exist
2020-10-08Fixed an issue in UWP export caused by duplicate entry for extensions in ↵unknown
content types file.
2020-10-08Merge pull request #42639 from AndreaCatania/revert_1Rémi Verschelde
Reverted physics body spawn optimization #39726 #40252
2020-10-08Fixed #41040 in an alternative way now that #39726 is revertedAndrea Catania
2020-10-08Cancel rename if file does not existTomasz Chabora
2020-10-08Revert "Optimized physics object spawn time and optimized shape usage when ↵Andrea Catania
the shape is not scaled" This reverts commit 7709a8349354b469361ec7e1429af0dc8af80b2a.
2020-10-08Revert "- Enhanced the flush mechanism by flushing only needed thing."Andrea Catania
This reverts commit 8d0d6d6921d5dfb398f4ab04e4d3937ab550c4ff.
2020-10-08Merge pull request #42634 from akien-mga/scons-warnings-gcc-Wsuggest-overrideRémi Verschelde
SCons: Refactor and cleanup warnings definition
2020-10-08SCons: Refactor and cleanup warnings definitionRémi Verschelde
2020-10-08Merge pull request #42610 from jak6jak/set_valuesRémi Verschelde
Fixed a bug which caused Set Index to not function
2020-10-07Merge pull request #42615 from akien-mga/fixup-40097Rémi Verschelde
Fix build after merge of #40097
2020-10-07Docs change: More detailed description of StreamPeerTCP.is_connected_to_host()Sniff
2020-10-07Fix build after merge of #40097Rémi Verschelde
CI had passed back then but this would have needed a rebase to take into account recent changes to String.
2020-10-07Merge pull request #40097 from mrushyendra/file_sort_masterRémi Verschelde
Fix natural sort comparison for strings with large numbers
2020-10-06added temp variable because *p_inputs[2] is the same as *p_outputs[0]Jacob Edie
2020-10-06Merge pull request #42606 from aaronfranke/cs-vec2-rotatedRémi Verschelde
Improve the Vector2 rotated code in C#
2020-10-06Improve the Vector2 rotated code in C#Aaron Franke
2020-10-06Merge pull request #42598 from KoBeWi/update_setting_or_somethingRémi Verschelde
Update the setting when clicking Show hidden files
2020-10-06Update the setting when clicking Show hidden filesTomasz Chabora
2020-10-06Merge pull request #42314 from mbrlabs/nodepath-fixRémi Verschelde
Fixed renaming/moving of nodes with exported NodePaths in the editor
2020-10-06Merge pull request #42591 from akien-mga/windows-subsystem-defaultRémi Verschelde
SCons: Add 'default' parameter for windows_subsystem, restores original behavior
2020-10-06Merge pull request #42589 from Duroxxigar/add-animplayer-error-msgRémi Verschelde
Added more helpful error message for animation player
2020-10-06SCons: Add windows_subsystem=default, restores original behaviorRémi Verschelde
We want debug builds to have a console and easy stdout redirection by default. Windows makes reading the stdout/stderr stream from gui applications too cumbersome (and most users don't know about it, and just wonder why they don't see a thing).
2020-10-06Added a more helpful error message when there is no current animation for ↵Duroxxigar
the animation player
2020-10-05Merge pull request #42580 from aaronfranke/has-clearRémi Verschelde
Check for global script class information before clearing it
2020-10-05Check for global script class information before clearing itAaron Franke
2020-10-05Merge pull request #42577 from fire/japanese-bone-name-gltf-masterRémi Verschelde
Better non alphanumeric bone names.
2020-10-05Merge pull request #42571 from akien-mga/fix-binary-format-load-errorRémi Verschelde
Improve format version mismatch error in binary loader
2020-10-05Better non alphanumeric bone names.K. S. Ernest (iFire) Lee
1. _gen_unique_bone_name(Ref<GLTFState> state, const GLTFSkeletonIndex skel_i, const String &p_name) won't return an empty string. 2. String GLTFDocument::_sanitize_bone_name(const String &name) will keep Japanese characters. Like: "全ての親". 3. The sanitize function allows the bone name to be not just alphanumeric. The only required conditions are the ones in add_bone. > ERR_FAIL_COND(p_name == "" || p_name.find(":") != -1 || p_name.find("/") != -1);
2020-10-05Merge pull request #42504 from akien-mga/glTF-fix-image-loadingRémi Verschelde
glTF: Fix parsing image data with `mimeType` undefined
2020-10-05Improve format version mismatch error in binary loaderRémi Verschelde
2020-10-05glTF: Fix parsing image data with `mimeType` undefinedRémi Verschelde
The glTF 2.0 spec only makes `mimeType` mandatory for `bufferView` image data, so the previous logic to handle URIs with base64-encoded images could fail if `mimeType` is undefined. The logic was documented and refactored to better handle the spec, notably: - `uri` and `bufferView` are now mutually exclusive, and only the latter fails if `mimeType` is undefined. - `uri` with a file path will now respect the `mimeType` if defined, and thus attempt loading the file with the specified format (even if its extension is not the one expected for this format). So we can support bad extensions (PNG data with `.jpg` extension) or custom ones (PNG data in `.img` file for example). - `uri` with base64 encoded data will infer MIME type from `data:image/png` or `data:image/jpeg` if it was not documented in `mimeType` initially. - `uri` with base64 encoded data, no `mimeType` and `application/octet-stream` or `application/gltf-buffer` will fall back to trying both PNG and JPEG loaders. Fully fixes #33796 (and fixes up #42501).
2020-10-04Merge pull request #42439 from Xrayez/doc-gdscript-load-and-resloader-xrefRémi Verschelde
Cross-reference GDScript `load` and `ResourceLoader.load` in classref
2020-10-04Merge pull request #42561 from Faless/js/build_no_configRémi Verschelde
[HTML5] Scons now expects "emcc" to be in PATH.
2020-10-04[HTML5] Scons now expects "emcc" to be in PATH.Fabio Alessandrelli
No longer parse emscripten/emsdk config to detect emcc/node paths. Use WhereIs to find "emcc" and "node", look for "node_modules" in "emcc" path.
2020-10-04Merge pull request #42550 from clayjohn/VULKAN-decal-srgbRémi Verschelde
Return proper texture view format for decals
2020-10-04Merge pull request #42553 from Chaosus/vs_fix_typoYuri Roubinsky
Fix typo in VisualShaderNodeSample3D::generate_code
2020-10-04Fix typo in VisualShaderNodeSample3D::generate_codeYuri Roubinsky
2020-10-03Return proper texture view format for decalsclayjohn
2020-10-03Merge pull request #42518 from Duroxxigar/update-getter-and-settersRémi Verschelde
Updated getters and setters names for toplevel
2020-10-03Merge pull request #42539 from Chaosus/vs_fix_compute_texturesRémi Verschelde
Fix default parameter in Texture visual shader nodes for sky/particles modes
2020-10-03Merge pull request #42532 from madmiraal/fix-7920Rémi Verschelde
Fix how Line2D obtains the other object's supports
2020-10-03Fix def parameter in Texture visual shader nodes for sky/particles modesYuri Roubinsky
2020-10-03Merge pull request #42534 from Paulb23/color_region_crash_issue_42492Rémi Verschelde
Switch from recursion to iterative for backfilling colour regions
2020-10-03Merge pull request #42527 from aaronfranke/no-global-scr-classRémi Verschelde
Don't write global script class information if there is none
2020-10-03Merge pull request #42530 from madmiraal/fix-cut-and-paste-errorRémi Verschelde
Remove reference to 3D shapes in RigidBody2D.xml contacts description.
2020-10-03Switch from recursion to iterative for backfilling colour regionsPaulb23
2020-10-03Fix how Line2D obtains the other object's supportsMarcel Admiraal
Measure the distance from the line against the rotated object, not the rotated line, when obtaining the object's supports against a line.