summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-01-05Merge pull request #34820 from timothyqiu/doc-treeRémi Verschelde
Improves Tree documentation
2020-01-04Merge pull request #34827 from Calinou/doc-object-get-nonexistentRémi Verschelde
Document the return value of `Object.get()` with a nonexistent property
2020-01-04Document the return value of `Object.get()` with a nonexistent propertyHugo Locurcio
2020-01-04Merge pull request #34818 from GodotExplorer/gdscript-lsp-declarationRémi Verschelde
GDScript LSP: Implement goto declaration
2020-01-04Improves Tree documentationHaoyu Qiu
2020-01-04GDScript LSP: Implement goto declarationgeequlim
2020-01-04Merge pull request #34811 from timothyqiu/i18nRémi Verschelde
Makes more strings translatable
2020-01-04Makes more strings translatableHaoyu Qiu
2020-01-04Merge pull request #34795 from dankan1890/mono_cs_iconRémi Verschelde
[Mono]: the C# script icon is now visible in the editor.
2020-01-03Merge pull request #34794 from clayjohn/GLES2-trimesh-crashRémi Verschelde
Fix crash on trimesh_create
2020-01-03[Mono]: the C# script icon is now visible in the editor.dankan1890
2020-01-03Merge pull request #34790 from clayjohn/ETC-support-alphaRémi Verschelde
Add support for Lum-alpha textures to ETC fallback
2020-01-03Merge pull request #34788 from Faless/enet/max_clientsRémi Verschelde
Fix ENet max clients highest value.
2020-01-03Merge pull request #34792 from YeldhamDev/tabcontainer_hidden_tabs_docRémi Verschelde
Document TabContainer's "use_hidden_tabs_for_min_size"
2020-01-03Fix crash on trimesh_create by making surface->data available in non-tool buildsclayjohn
2020-01-03Document TabContainer's "use_hidden_tabs_for_min_size"Michael Alexsander
2020-01-03Fix ENet max clients highest value.Fabio Alessandrelli
Was 4096, while actually it's 4095. Fixed now in both docs and `create_server` check.
2020-01-03Add support for Lum-alpha textures to ETC fallbackclayjohn
2020-01-03Merge pull request #34784 from neikeq/fix-hintpath-godottoolsRémi Verschelde
Mono/C#: Fix wrong HintPath for package in GodotTools
2020-01-03Merge pull request #34781 from fossegutten/button-flashRémi Verschelde
Fixes button flashing when releasing mousebutton outside
2020-01-03Mono/C#: Fix wrong HintPath for package in GodotToolsIgnacio Etcheverry
2020-01-03doc: Sync classref with current sourceRémi Verschelde
2020-01-03Merge pull request #34452 from aaronfranke/color-arithRémi Verschelde
[Mono] Color arithmetic operators
2020-01-03Fixes button flashing when releasing mousebutton outsidefossegutten
2020-01-03Merge pull request #34755 from Calinou/shadermaterial-connect-editor-onlyRémi Verschelde
Don't connect ShaderMaterial's `changed` signal when not in the editor
2020-01-03Merge pull request #34782 from akien-mga/multiplayerapi-set_network_peer-invalidRémi Verschelde
MultiplayerAPI: Fix disconnect errors when passing invalid peer
2020-01-03Merge pull request #34772 from clayjohn/ETC-support-alphaRémi Verschelde
Fallback to RGBA4444 for textures with alpha set to ETC compression
2020-01-03Merge pull request #34726 from nekomatata/polygon2d-antialiasing-fixRémi Verschelde
Fixed antialiasing option for Polygon2D with concave/hollow shapes
2020-01-03Merge pull request #34779 from timothyqiu/tree-hscrollRémi Verschelde
Better horizontal scroll for Tree
2020-01-03Merge pull request #34681 from Calinou/add-quit-exit-code-shorthandRémi Verschelde
Add a shorthand for setting the exit code using `SceneTree::quit()`
2020-01-03MultiplayerAPI: Fix disconnect errors when passing invalid peerRémi Verschelde
Fixes #34634.
2020-01-03Better horizontal scroll for TreeHaoyu Qiu
* Adds pan gesture support for horizontal scroll. * Scrolls horizontally when needed to ensure cursor visiblility.
2020-01-03[Mono] Color arithmetic operatorsAaron Franke
2020-01-03Add a shorthand for setting the exit code using `SceneTree::quit()`Hugo Locurcio
This reduces the amount of code required to exit a process with a non-zero exit code. This pattern is also found in most other programming languages.
2020-01-03Merge pull request #34688 from sheepandshepherd/gdnative_class_ptrRémi Verschelde
Expose is_class_ptr to GDNative for dynamic casts
2020-01-03Merge pull request #34456 from aaronfranke/its-a-signRémi Verschelde
[Mono] Make Sign methods consistent with GDScript and System.Math
2020-01-03Merge pull request #34760 from fire/gltf2-scissorsRémi Verschelde
Support GLTF2 alpha scissors.
2020-01-03Merge pull request #34770 from timothyqiu/layeredRémi Verschelde
Clears initial button mask before activating menu item
2020-01-03Merge pull request #34747 from rcorre/add_child_ownerRémi Verschelde
Add note about add_child and owner.
2020-01-03Merge pull request #34551 from MadEqua/fix-light-with-skeletonRémi Verschelde
Fix 2D lighting when using skeleton.
2020-01-02Fallback to RGBA4444 for textures with alpha set to ETC compressionclayjohn
2020-01-03Expose cast_to to GDNative for dynamic castssheepandshepherd
2020-01-02Add note about add_child and owner.Ryan Roden-Corrent
Resolves #34739.
2020-01-03Clears button mask before activating menu itemHaoyu Qiu
2020-01-02[Mono] Make Sign methods consistent with GDScript and System.MathAaron Franke
2020-01-02Merge pull request #34763 from Calinou/enable-line-length-guidelineRémi Verschelde
Enable the script editor line length guideline by default
2020-01-02Enable the script editor line length guideline by defaultHugo Locurcio
Now that the GDScript style guide has an official recommendation, it makes sense to enable the line length guideline by default.
2020-01-02Merge pull request #34761 from Anutrix/remove_2_unused_importsRémi Verschelde
Remove unused imports in methods.py
2020-01-02Support GLTF2 alpha scissors.K. S. Ernest (iFire) Lee
2020-01-03Remove unused importsunknown