aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* | | | | | | | | | | | | | Merge pull request #12546 from neikeq/do-people-read-theseIgnacio Etcheverry2017-11-011-1/+1
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ | |_|/ / / / / / / / / / / / |/| | | | | | | | | | | | | Use mono_gc_wbarrier_set_arrayref for Array marshalling
| * | | | | | | | | | | | | Use mono_gc_wbarrier_set_arrayref for Array marshallingIgnacio Etcheverry2017-11-011-1/+1
| |/ / / / / / / / / / / /
* | | | | | | | | | | | | Merge pull request #12542 from Paulb23/enter_remove_text_issue_12494Rémi Verschelde2017-10-311-4/+3
|\ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Remove text on enter, issue 12494
| * | | | | | | | | | | | | Remove text on enter, issue 12494Paulb232017-10-311-4/+3
| |/ / / / / / / / / / / /
* | | | | | | | | | | | | Merge pull request #12539 from bncastle/InputMapDialogClearActionRémi Verschelde2017-10-311-0/+1
|\ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Clear action name text input when the action is successfully added to the Input Map [ci skip]
| * | | | | | | | | | | | | Clear text when a new action is added Project Settings Input Mapbncastle2017-10-311-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When editing the Input Map under Project Settings: Clear the action name the 'Add' button is clicked and the action is successfully added.
* | | | | | | | | | | | | | Merge pull request #12537 from marcelofg55/wasapi_improvementsRémi Verschelde2017-10-313-16/+41
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Improved WASAPI driver logic when devices are connected or disconnected
| * | | | | | | | | | | | | | Improved WASAPI driver logic when devices are connected or disconnectedMarcelo Fernandez2017-10-313-16/+41
| |/ / / / / / / / / / / / /
* | | | | | | | | | | | | | Merge pull request #12536 from Hinsbart/cs_templatesRémi Verschelde2017-10-312-2/+71
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Mono: support custom script templates.
| * | | | | | | | | | | | | | Mono: support custom script templates.Andreas Haas2017-10-312-2/+71
| |/ / / / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Also fixes a bug that prevented methods like `duplicate()` from copying the source code. (Copied from GDScript implementation)
* | | | | | | | | | | | | | Merge pull request #12035 from Chaosus/wrapfuncRémi Verschelde2017-10-316-1/+85
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Added new Wrap functions for numbers
| * | | | | | | | | | | | | | Added new wrap functionsChaosus2017-10-136-1/+85
| | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | Merge pull request #11249 from m4nu3lf/bugfix/get_eulerRémi Verschelde2017-10-313-17/+17
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix inertia tensor update & Generic6DOFJoint & Simplify Basis::get_euler()
| * | | | | | | | | | | | | | | Fix Basis::get_euler_xyz()m4nu3lf2017-09-221-13/+12
| | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | Fix wrong index in get_euler_xyz and wrong get_euler in G6DF Jointm4nu3lf2017-09-221-1/+1
| | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | Fix Inertia tensor update & Generic 6DOF Jointm4nu3lf2017-09-222-3/+4
| | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | Merge pull request #10770 from RandomShaper/fix-jointsRémi Verschelde2017-10-315-120/+59
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix joints collision exceptions, plus a bit more
| * | | | | | | | | | | | | | | | Remove joint freeing logic from physics serversPedro J. Estébanez2017-09-092-28/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Since joint resources are created by joint nodes and also they take care of freeing them, the physics server doesn't need to free bodies' joints explicitly. The logic for clearing the constraints map/set is still relevant as there may be collision pairs and in their case its the server itself the one creating them and therefore releasing them.
| * | | | | | | | | | | | | | | | Fix joints collision exceptionsPedro J. Estébanez2017-08-293-92/+59
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix 3D joint handling of collision exceptions, so that they lose effect when the joint is not valid in every case; also some redundant code removed. Also avoid trying to create the joint when not neither body A nor body B are set. Make 2D joints be handled like their 3D counterparts, which adds the fixes to them while also removing duplicated code. (adapted from commit 4a98a59aa6810a679370e3664e89b3d83eb3d879)
* | | | | | | | | | | | | | | | | Merge pull request #10261 from Cradmon/refactorRémi Verschelde2017-10-312-352/+336
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | |_|_|_|_|/ / / / / / / / / / / / |/| | | | | | | | | | | | | | | | Make the File System Dock more user friendly
| * | | | | | | | | | | | | | | | Make file system dock more user friendly.Cradmon2017-10-222-352/+336
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Edited files: editor/filesystem_dock.h editor/filesystem_dock.cpp
* | | | | | | | | | | | | | | | | Ability to shrink 3D viewport by halfJuan Linietsky2017-10-314-4/+66
| |_|_|_|/ / / / / / / / / / / / |/| | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | Merge pull request #12535 from neikeq/wtf···Ignacio Etcheverry2017-10-311-3/+3
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | |_|_|_|_|_|/ / / / / / / / / / |/| | | | | | | | | | | | | | | Fix msbuild hint paths returning only the directory
| * | | | | | | | | | | | | | | Fix msbuild hint paths returning only the directoryIgnacio Etcheverry2017-10-311-3/+3
| | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | Merge pull request #12531 from uldall/masterRémi Verschelde2017-10-311-2/+0
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixed GitHub detection of license in LICENSE.txt file.
| * | | | | | | | | | | | | | | | Fixed GitHub detection of license in LICENSE.txt file.Christian Uldall Pedersen2017-10-311-2/+0
|/ / / / / / / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Unfortunately licensee also looks at the COPYRIGHT.txt file and detects it as "other". GitHub therefore still doesn't add the correct license to the project. This is however a step in the right direction. Before: $ licensee LICENSE.txt License: Other Matched files: ["LICENSE.txt"] LICENSE.txt: Content hash: 8dd7a8f24846f434ce7fdb96f6440909b5469277 Attribution: Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur. License: Other After: $ licensee LICENSE.txt License: MIT License Matched files: ["LICENSE.txt"] LICENSE.txt: Content hash: d64f3bb4282a97b37454b5bb96a8a264a3363dc3 Attribution: Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur. Confidence: 100.00% Matcher: Licensee::Matchers::Exact License: MIT License
* | | | | | | | | | | | | | | | Merge pull request #12530 from ↵Rémi Verschelde2017-10-311-0/+3
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | godotengine/revert-12351-fix_item_list_selection_clipping Revert "Fixes the selection rect in item_list drawn not clipped"
| * | | | | | | | | | | | | | | | Revert "Fixes the selection rect in item_list drawn not clipped"Rémi Verschelde2017-10-311-0/+3
|/ / / / / / / / / / / / / / / /
* | | | | | | | | | | | | | | | Add screenshot to the READMERémi Verschelde2017-10-311-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 3D scene courtesy of @fracteed.
* | | | | | | | | | | | | | | | Use node name as default filename when attaching script.Benjamin2017-10-311-0/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When attaching a script to a node that isn't saved to a scene file, use its name as default filename. If the edited scene's root node *has* been saved to a file, use that directory.
* | | | | | | | | | | | | | | | Merge pull request #12499 from Zylann/freelook_toggle_modeRémi Verschelde2017-10-311-1/+17
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add option to use freelook with a toggle shortcut
| * | | | | | | | | | | | | | | | Add option to use freelook with a toggle shortcut (like Blender) instead of ↵Marc Gilleron2017-10-301-1/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | holding RMB (like Unity)
* | | | | | | | | | | | | | | | | Merge pull request #12526 from tagcup/ubo_fixJuan Linietsky2017-10-301-0/+1
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add viewport to the other SceneData struct.
| * | | | | | | | | | | | | | | | | Add viewport to the other SceneData struct.Ferenc Arn2017-10-301-0/+1
|/ / / / / / / / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This was missed in #12288.
* | | | | | | | | | | | | | | | | Merge pull request #12525 from neikeq/wololoRémi Verschelde2017-10-302-7/+1
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Remove Visual Studio for now from the external editors list
| * | | | | | | | | | | | | | | | | Remove Visual Studio for now from the external editors listIgnacio Etcheverry2017-10-302-7/+1
| | |_|_|_|_|_|/ / / / / / / / / / | |/| | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | | Merge pull request #12523 from RandomShaper/fix-margins-drawn-too-lateJuan Linietsky2017-10-301-2/+1
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | |_|_|/ / / / / / / / / / / / / / |/| | | | | | | | | | | | | | | | Fix viewport margins drawn after swapping buffers
| * | | | | | | | | | | | | | | | Fix viewport margins drawn after swapping buffersPedro J. Estébanez2017-10-301-2/+1
| | | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | | Merge pull request #12288 from tagcup/expose_viewport_sizeJuan Linietsky2017-10-304-4/+9
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Expose VIEWPORT_SIZE in shader language.
| * | | | | | | | | | | | | | | | | Expose VIEWPORT_SIZE in shader language.Ferenc Arn2017-10-264-4/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #11710.
* | | | | | | | | | | | | | | | | | Merge pull request #12268 from AlexHolly/fix-lineedit-selectionRémi Verschelde2017-10-301-2/+4
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix LineEdit drag selection to the left
| * | | | | | | | | | | | | | | | | | fix LineEdit drag selection to the leftAlexHolly2017-10-201-2/+4
| | | | | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | | | | Merge pull request #12351 from groud/fix_item_list_selection_clippingRémi Verschelde2017-10-301-3/+0
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes the selection rect in item_list drawn not clipped
| * | | | | | | | | | | | | | | | | | | Fixes the selection rect in item_list drawn not clippedGilles Roudiere2017-10-241-3/+0
| | | | | | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | | | | | Merge pull request #12363 from groud/implement_guidesRémi Verschelde2017-10-302-47/+321
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Implement 2D editor guides
| * | | | | | | | | | | | | | | | | | | | Implement guidesGilles Roudiere2017-10-242-47/+321
| | | | | | | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | | | | | | Add Colemak keybindings to editor for osxN0hbdy2017-10-306-3/+29
| | | | | | | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | | | | | | Added difference between function which return value or notЗахаров Андрей2017-10-301-274/+289
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Now ADDFUNC with suffix R add function with return value. It was changed because addfunc considers that the function doesn't return a value if it returns NIL.
* | | | | | | | | | | | | | | | | | | | | Merge pull request #12471 from mhilbrunner/autocompleteRémi Verschelde2017-10-304-2/+34
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix get_node() and $ autocompletion when using single quotes
| * | | | | | | | | | | | | | | | | | | | | Fix get_node() and $ autocompletion when using single quotesUnknown2017-10-304-2/+34
| | | | | | | | | | | | | | | | | | | | | |