summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-08-25Merge pull request #41497 from lyuma/assimp_set_pose_fixRémi Verschelde
Fix regression in FBX import caused by Skeleton3D
2020-08-25Fix regression in FBX import caused by Skeleton3DLyuma
A change in commit f7fdc87 changed the Skeleton3D "pose" property from PROPERTY_USAGE_EDITOR to PROPERTY_USAGE_NOEDITOR. This should have had no effect, however it turns out assimp was assigning to the pose property. This change adjusts the FBX import to only get_bone_rest/set_bone_rest, not set_bone_pose.
2020-08-25Merge pull request #41461 from Calinou/ci-platforms-emojiRémi Verschelde
GitHub Actions: Prepend emoji to platform names for easy visual grepping
2020-08-24Merge pull request #41476 from nekomatata/subviewport-node-compatibilityRémi Verschelde
Add Viewport/SubViewport node compatibility
2020-08-24Merge pull request #41469 from madmiraal/fix-41397Rémi Verschelde
Ensure node's area tree signals are disconnected when clearing monitoring, even if nodes are no longer in the tree.
2020-08-24Merge pull request #41485 from neikeq/issue-41433Rémi Verschelde
C#: Fix 'Parameter toolsPath cannot be null' error
2020-08-24C#: Fix 'Parameter toolsPath cannot be null' errorIgnacio Etcheverry
2020-08-23Add Viewport/SubViewport node compatibilityPouleyKetchoupp
2020-08-23Merge pull request #41238 from MarianoGnu/gdscript-export-resourceGeorge Marques
Fix GdScript Analyzier not detecting Resource subclass correctly
2020-08-23GitHub Actions: Prepend emoji to platform names for easy visual greppingHugo Locurcio
2020-08-23Ensure node's area tree signals are disconnected when clearing monitoring,Marcel Admiraal
even if nodes are no longer in the tree.
2020-08-22Merge pull request #41428 from madmiraal/fix-python-styleRémi Verschelde
Fix new black style check failures in various files.
2020-08-21Fix new black style check failures in various files.Marcel Admiraal
2020-08-21Merge pull request #41425 from Calinou/doc-2d-sprite-animationRémi Verschelde
Link to 2D Sprite animation tutorial in relevant class documentations
2020-08-21Merge pull request #41423 from KoBeWi/NEXT.FRAMERémi Verschelde
Mention that body_set_state is deferred
2020-08-21Link to 2D Sprite animation tutorial in relevant class documentationsHugo Locurcio
2020-08-21Merge pull request #41376 from Calinou/improve-editor-property-selectorRémi Verschelde
Improve search and display in the editor property/method selector
2020-08-21Mention that body_set_state is deferredTomasz Chabora
2020-08-21Merge pull request #41363 from Calinou/test-add-gradientRémi Verschelde
Add a test suite for Gradient
2020-08-21Merge pull request #41387 from skyace65/CollisionShapeDocRémi Verschelde
Update CollisionShape2D doc
2020-08-21Merge pull request #41405 from skyace65/Line2DRémi Verschelde
Clarify points in Line2D doc
2020-08-20Update CollisionShape2D docskyace65
2020-08-21Merge pull request #41379 from hazarek/patch-1Rémi Verschelde
Fixes GDScript UTI
2020-08-21Merge pull request #41410 from neikeq/no-bom-on-csproj-creationRémi Verschelde
C#: Save newly created csproj files without BOM
2020-08-21Clarify points in Line2D docskyace65
2020-08-21Merge pull request #41409 from neikeq/fix-null-in-msbuild-loggerRémi Verschelde
C#: Fix null exception in our MSBuild logger
2020-08-21Merge pull request #41411 from neikeq/fix-rare-wrong-proj-assembly-pathRémi Verschelde
Mono/C#: Fix editor using wrong project assembly path in rare cases
2020-08-21C#: Save newly created csproj files without BOMIgnacio Etcheverry
2020-08-21C#: Fix null exception in our MSBuild loggerIgnacio Etcheverry
2020-08-21Mono/C#: Fix editor using wrong project assembly path in rare casesIgnacio Etcheverry
We were removing invalid path characters from the name in C++ code, but the C# editor code wasn't.
2020-08-21Style: Apply format changes from latest psf/black gitRémi Verschelde
2020-08-20Merge pull request #41345 from clayjohn/VULKAN-sky-fogJuan Linietsky
Add fog to sky shaders
2020-08-19Add fog to sky shadersclayjohn
2020-08-19Merge pull request #41381 from vnen/gdscript-2-fixesRémi Verschelde
A few more GDScript fixes
2020-08-19fix GDScript UTIHazar
changed from public.data to public.script
2020-08-19GDScript: Make subscript access be properly type checkedGeorge Marques
2020-08-19GDScript: Show error when function return type is missingGeorge Marques
2020-08-19Improve search and display in the editor property/method selectorHugo Locurcio
- Use postfix notation for types in the method selector (for consistency with the editor help). - Perform a case-insensitive match and replace spaces with underscores in the search string. - Fix extraneous space after the `void` return type.
2020-08-19Merge pull request #41373 from godotengine/revert-38727-tiling-wm-issues-testsJuan Linietsky
Revert "Fixes for windows in X11 tiling WMs"
2020-08-19Revert "Fixes for windows in X11 tiling WMs"Juan Linietsky
2020-08-19Merge pull request #41372 from akien-mga/fix-uint32_t-warningRémi Verschelde
Fix warning using ERR_FAIL_INDEX on unsigned int
2020-08-19GDScript: Fix signal parameters not respecting commasGeorge Marques
2020-08-19GDScript: Check duplicate keys in dictionaries and enumsGeorge Marques
2020-08-19GDScript: Allow preload() to be used with constant expressionsGeorge Marques
2020-08-19GDScript: Allow keywords to be used in $ notationGeorge Marques
2020-08-19Fix warning using ERR_FAIL_INDEX on unsigned intRémi Verschelde
This method starting being used in 079ca220e14669ef7c31c399985cd2c733af15bd, which now triggers this warning from GCC 10: ``` ./core/error_macros.h:151:25: error: comparison of unsigned expression in '< 0' is always false [-Werror=type-limits] ```
2020-08-19Merge pull request #41080 from naithar/feature/ios-framework-importRémi Verschelde
[iOS] [4.0] Export: Add a method to embed a framework
2020-08-19iOS Export: Add a method to embed a frameworkSergey Minakov
By default 'add_ios_framework' would not embed a framework to save previous behavior. New 'add_ios_embedded_framework' would embed framework on export.
2020-08-19Merge pull request #41367 from Calinou/doc-richtextlabel-centeringRémi Verschelde
Document limitations related to centering text with RichTextLabel
2020-08-19Document limitations related to centering text with RichTextLabelHugo Locurcio
This is a relatively common question on various community channels.