aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | | | | | | | | | | | | | | | | | [DOCS] AnimationTreePlayer props/members/methodsWill Nations2017-12-082-8/+42
| | | | | | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | | | | | Merge pull request #14321 from ibrahn/path2d-two-styleRémi Verschelde2017-12-092-20/+60
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Reworked PathFollow2D behaviour, based on such in version 2.1.
| * | | | | | | | | | | | | | | | | | | | Reworked PathFollow2D behaviour, based on such in version 2.1.Ibrahn Sahir2017-12-062-20/+60
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When rotation is enabled, the follower's rotation will be set to that of the tangent to the path at it's current offset. For closed looping paths the lookahead will now wrap around at the end of the path. fixes #13434
* | | | | | | | | | | | | | | | | | | | | Merge pull request #14358 from RandomShaper/fix-vscriptRémi Verschelde2017-12-091-0/+1
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | |_|_|_|_|_|_|_|_|_|_|_|/ / / / / / / / | |/| | | | | | | | | | | | | | | | | | | Fix function arg count not considered in VisualScript
| * | | | | | | | | | | | | | | | | | | | Fix function arg count not considered in VisualScriptPedro J. Estébanez2017-12-071-0/+1
| | |_|_|_|_|_|_|_|_|_|_|_|_|/ / / / / / | |/| | | | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | | | | | Merge pull request #14420 from MattUV/fold-shortcutRémi Verschelde2017-12-094-20/+20
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Modify shortcuts and menus to fold/unfold code
| * | | | | | | | | | | | | | | | | | | | Modify shortcuts and menus to fold/unfold codeMattUV2017-12-084-20/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix #13180 As the same shortcut cannot be assigned to two actions, I removed the ability to fold (fold_line()) or unfold (unfold_line()) via menu (still possible by code), and there is a single fold/unfold action (toggle_fold_line()). The new default shortcut is now Alt+F
* | | | | | | | | | | | | | | | | | | | | Merge pull request #14434 from Smjert/fix/13447/vsyncRémi Verschelde2017-12-097-4/+12
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes vsync setting ignored when using a separate thread for rendering
| * | | | | | | | | | | | | | | | | | | | | Fixes vsync setting ignored when using a separate thread for renderingStefano Bonicatti2017-12-097-4/+12
| | |_|_|_|_|_|_|_|_|_|_|_|_|/ / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Setting the vsync in the main thread, after the rendering thread starts and takes the OpenGL context fails, so we need to do that before. Also, for some reason, the main thread cannot make current the context anymore. Fixes #13447
* | | | | | | | | | | | | | | | | | | | | Merge pull request #14443 from akien-mga/rcedit-wineRémi Verschelde2017-12-091-8/+36
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Windows export: Use WINE to run rcedit on non-Windows host
| * | | | | | | | | | | | | | | | | | | | | Windows export: Use WINE to run rcedit on non-Windows hostRémi Verschelde2017-12-091-8/+36
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | WINE can be either run from a provided path ("export/windows/wine"), or looked up in the system PATH. Fixes #14441.
* | | | | | | | | | | | | | | | | | | | | | Merge pull request #12756 from Stratos695/masterRémi Verschelde2017-12-0912-107/+153
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / / / / / / / / / / / / / |/| | | | | | | | | | | | | | | | | | | | | Allowing double-axis lock in RigidBody & KinematicBody (Fixes #12500)
| * | | | | | | | | | | | | | | | | | | | | Allow double-axis lock in RigidBody and KinematicBodyEric Rybicki2017-11-1012-107/+153
| | | | | | | | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | | | | | | | Merge pull request #14437 from vnen/rceditRémi Verschelde2017-12-091-1/+97
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Call rcedit on export for Windows desktop
| * | | | | | | | | | | | | | | | | | | | | | Call rcedit on export for Windows desktopGeorge Marques2017-12-091-1/+97
| | |_|_|_|_|_|_|_|_|_|_|_|_|/ / / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Add an editor setting to read the rcedit path. - Add settings to the export preset with icon and other exe information (version, name, copyright, etc.)
* | | | | | | | | | | | | | | | | | | | | | Merge pull request #14438 from hoelzl/pr-ignore-natvis-filesRémi Verschelde2017-12-091-0/+3
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Ignore Visual Studio '*.natvis' files [ci skip]
| * | | | | | | | | | | | | | | | | | | | | | Ignore Visual Studio '*.natvis' filesMatthias Hoelzl2017-12-091-0/+3
| | | | | | | | | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | | | | | | | | Merge pull request #14436 from sersoong/master-fixbugsRémi Verschelde2017-12-091-0/+4
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Restored two items in filesystemdock menu
| * | | | | | | | | | | | | | | | | | | | | | | Restored two items in filesystemdock menusersoong2017-12-091-0/+4
| |/ / / / / / / / / / / / / / / / / / / / / /
* | | | | | | | | | | | | | | | | | | | | | | Merge pull request #14432 from rminderhoud/sort_customRémi Verschelde2017-12-091-0/+10
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / / / / / / / / / / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Added example for Array sort_custom function [ci skip]
| * | | | | | | | | | | | | | | | | | | | | | Added example for Array sort_custom functionRalph Minderhoud2017-12-081-0/+10
| | |_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|/ / / | |/| | | | | | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | | | | | | | Merge pull request #14384 from willnationsdev/docs-api-fixRémi Verschelde2017-12-092-6/+9
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [DOCS] AnimationPlayer prop API fixed
| * | | | | | | | | | | | | | | | | | | | | | [DOCS] AnimationPlayer prop API fixedWill Nations2017-12-072-6/+9
| | | | | | | | | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | | | | | | | | Merge pull request #14421 from PJB3005/17-12-08-fix_tilemap_occluder_offsetRémi Verschelde2017-12-091-4/+1
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | |_|/ / / / / / / / / / / / / / / / / / / / / |/| | | | | | | | | | | | | | | | | | | | | | Fixes TileMap occluder offsets.
| * | | | | | | | | | | | | | | | | | | | | | Fixes TileMap occluder offsets.PJB30052017-12-081-4/+1
| | |_|_|/ / / / / / / / / / / / / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is NOT related to #14388! This fixes a graphical bug where the light occluders used by tilemaps weren't getting offset anymore, this they'd be positioned incorrectly. I tried on all 3 tilemap positioning modes and it seemed to work on every one.
* | | | | | | | | | | | | | | | | | | | | | Merge pull request #14423 from PJB3005/17-12-08-fix-ocludder-typoRémi Verschelde2017-12-082-9/+9
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / / / / / / / / / / / / / |/| | | | | | | | | | | | | | | | | | | | | Fix TileSet::AutotileData::ocludder_map typo
| * | | | | | | | | | | | | | | | | | | | | Fix TileSet::AutotileData::ocludder_map typoPJB30052017-12-082-9/+9
|/ / / / / / / / / / / / / / / / / / / / /
* | | | | | | | | | | | | | | | | | | | | Merge pull request #14412 from hpvb/fix-thekla-atlas-buildJuan Linietsky2017-12-082-2/+2
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix thekla_atlas build
| * | | | | | | | | | | | | | | | | | | | | Fix thekla_atlas buildHein-Pieter van Braam2017-12-082-2/+2
|/ / / / / / / / / / / / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | clang doesn't like c++ versions being supplied to build c source files.
* | | | | | | | | | | | | | | | | | | | | Merge pull request #14409 from hpvb/import-thekla-atlasJuan Linietsky2017-12-08127-0/+31441
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Import thekla_atlas
| * | | | | | | | | | | | | | | | | | | | | Import thekla_atlasHein-Pieter van Braam2017-12-08127-0/+31441
| | |_|_|/ / / / / / / / / / / / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | As requested by reduz, an import of thekla_atlas into thirdparty/
* / | | | | | | | | | | | | | | | | | | | After a lot of trial and error, i think rim lighting implementation is now ↵Juan Linietsky2017-12-081-6/+8
|/ / / / / / / / / / / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | perfect, closes #13986
* | | | | | | | | | | | | | | | | | | | Merge pull request #14014 from kosz78/scroll-container-fixRémi Verschelde2017-12-081-0/+2
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix scroll enabled in case of content fit in scroll container
| * | | | | | | | | | | | | | | | | | | | Fix scroll enabled in case of content fit in scroll containerKonstantin Zaitsev2017-12-061-0/+2
| | |/ / / / / / / / / / / / / / / / / / | |/| | | | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | | | | | Merge pull request #14397 from YeldhamDev/localization_tabRémi Verschelde2017-12-081-13/+7
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Removed style override inside the Localization tab in the Project Settings
| * | | | | | | | | | | | | | | | | | | | Removed style override inside the Localization tab in the Project Settings.Michael Alexsander Silva Dias2017-12-071-13/+7
| | | | | | | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | | | | | | Merge pull request #14396 from MattUV/fix-templates-linkRémi Verschelde2017-12-083-0/+3
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix Manage Export Templates link
| * | | | | | | | | | | | | | | | | | | | | Fix Manage Export Templates linkMattUV2017-12-083-0/+3
| |/ / / / / / / / / / / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In some cases, the link to download export templates was missing. Fixes #14391
* | | | | | | | | | | | | | | | | | | | | Merge pull request #13981 from Paulb23/line_highlight_and_code_folding_colorRémi Verschelde2017-12-087-9/+24
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | |_|_|_|_|_|_|_|_|_|_|_|_|_|_|_|/ / / / / |/| | | | | | | | | | | | | | | | | | | | Changed current line draw order and added code folding colour
| * | | | | | | | | | | | | | | | | | | | Changed current line draw order and added code folding colorPaulb232017-12-077-9/+24
| | | | | | | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | | | | | | Merge pull request #14395 from willnationsdev/docs2Chris Bradfield2017-12-076-3/+45
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [DOCS] CanvasItem(Material)/Layer, ClassDB, and CollisionObject(2D)
| * | | | | | | | | | | | | | | | | | | | | [DOCS] CanvasItem/Material/Layer, ClassDB, CollisionObject(2D)Will Nations2017-12-076-3/+45
| | |_|_|/ / / / / / / / / / / / / / / / / | |/| | | | | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | | | | | | Merge pull request #14385 from NathanWarden/raycast_docsChris Bradfield2017-12-071-1/+4
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | |_|_|/ / / / / / / / / / / / / / / / / / |/| | | | | | | | | | | | | | | | | | | | [DOCS] Finished off the RayCast documentation.
| * | | | | | | | | | | | | | | | | | | | Finished off the RayCast documentation.Nathan Warden2017-12-071-1/+4
| |/ / / / / / / / / / / / / / / / / / /
* | | | | | | | | | | | | | | | | | | | Fixed is_playing funtion (was reporting wrong), closes #13928Juan Linietsky2017-12-072-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Made error reporting to opcode_set in gdscript a bit clearer
* | | | | | | | | | | | | | | | | | | | Added small bit of bias depending on lenght for contact shadows, fixes #12726Juan Linietsky2017-12-071-1/+1
| |/ / / / / / / / / / / / / / / / / / |/| | | | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | | | | Exposed EditorSceneImporter to script. Added APIs to use intermediate ↵Juan Linietsky2017-12-0711-10/+190
|/ / / / / / / / / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | converters more easily.
* | | | | | | | | | | | | | | | | | Implement orbit velocity in particles (this is for 2D only, like in 2.1), ↵Juan Linietsky2017-12-071-5/+27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | closes #12764 Fixed tangential velocity (was broken)
* | | | | | | | | | | | | | | | | | Merge pull request #14348 from waldson/feature-set-main-screen-plugin-iconGeorge Marques2017-12-073-2/+25
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add method on EditorPlugin to set main screen plugins icons
| * | | | | | | | | | | | | | | | | | Add method to set main screen plugin iconWaldson Patrício2017-12-063-2/+25
| | | | | | | | | | | | | | | | | | |