aboutsummaryrefslogtreecommitdiff
path: root/editor
Commit message (Collapse)AuthorAgeFilesLines
* Added/Fixed null pointer checksWilson E. Alvarez2017-08-263-4/+4
|
* Merge pull request #10649 from akien-mga/code-error-always-showRémi Verschelde2017-08-261-7/+1
|\ | | | | Code editor: Don't play hide and seek with error label
| * Code editor: Don't play hide and seek with error labelRémi Verschelde2017-08-261-8/+1
| |
* | Merge pull request #10656 from akien-mga/cleanup-commented-out-codeRémi Verschelde2017-08-2634-3767/+244
|\ \ | | | | | | Cleanup tons of obsolete commented out code
| * | Cleanup tons of obsolete commented out codeRémi Verschelde2017-08-2634-3767/+244
| | | | | | | | | | | | | | | Mostly in EditorNode, dropping some obsolete editor plugins and also a cleanup of ProjectSettings/EditorSettings.
* | | Node: Add debug info to add_child reparenting checkRémi Verschelde2017-08-261-1/+0
| | | | | | | | | | | | Use it to remove buggy add_child in EditorAudioBus
* | | Merge pull request #10652 from Noshyaar/pr-audioRémi Verschelde2017-08-262-11/+12
|\ \ \ | |/ / |/| | EditorAudioBus: Rename delete_popup, disable delete for Master
| * | EditorAudioBus: Rename delete_popup, disable delete for MasterPoommetee Ketson2017-08-262-11/+12
| | | | | | | | | | | | | | | | | | Rename `delete_popup` to `bus_popup` Rename `_delete_pressed` to `_bus_popup_pressed` Disable 'Delete Bus' option for Master Bus
* | | -Split EditorPlugin into EditorPlugin and EditorInterfaceJuan Linietsky2017-08-267-125/+186
| |/ |/| | | | | | | -Added EditorInterface to EditorScript -Added functions to save the scene to EditorInterface
* | Merge pull request #10647 from Noshyaar/patch-1Andreas Haas2017-08-261-1/+1
|\ \ | | | | | | ProjectSettings: Fix typo 'an setting' to 'a setting'
| * | Fix typo 'an setting' to 'a setting'Poommetee Ketson2017-08-261-1/+1
| |/
* / Changed camera interpolation to work when LMB is pressed and no modifiers ↵Juan Linietsky2017-08-261-1/+3
|/ | | | are pressed
* -Massive clean up to gizmosJuan Linietsky2017-08-267-162/+373
| | | | | | | -Make sure handles are always visible (on top) -Fixed instanced scene selection (should work properly now) -Added interpolated camera -Customizable gizmo colors in editor settings
* Fix i18n bug in GridMap stringRémi Verschelde2017-08-2535-350/+70
| | | | Regression from 6134d87 causing build issue on clang.
* DocData: Fix extraneous space in XML tag without enum hintRémi Verschelde2017-08-251-8/+6
|
* Mi18n: erge translations with templateRémi Verschelde2017-08-2534-12251/+38184
|
* i18n: Update template with current sourceRémi Verschelde2017-08-251-331/+982
| | | | | Additions: 254 msgids. Deletions: 101 msgids.
* i18n: Sync translations with WeblateRémi Verschelde2017-08-2517-3425/+3940
|
* Editor: Add some more translatable strings.Andreas Haas2017-08-2528-85/+79
|
* Merge pull request #10581 from hpvb/fix-gcc6+Rémi Verschelde2017-08-2576-802/+732
|\ | | | | Make cast_to a static member of Object.
| * Convert Object::cast_to() to the static versionHein-Pieter van Braam2017-08-2476-802/+732
| | | | | | | | | | | | | | | | | | | | | | | | Currently we rely on some undefined behavior when Object->cast_to() gets called with a Null pointer. This used to work fine with GCC < 6 but newer versions of GCC remove all codepaths in which the this pointer is Null. However, the non-static cast_to() was supposed to be null safe. This patch makes cast_to() Null safe and removes the now redundant Null checks where they existed. It is explained in this article: https://www.viva64.com/en/b/0226/
* | Fix bug where not all previews are shown, closes #9895Juan Linietsky2017-08-241-2/+8
|/
* -Code completion for enumerationsJuan Linietsky2017-08-244-9/+11
| | | | -Disabled GDNative and GDNativeScript so build compiles again
* Changed MethodBind API to request information from methods. It's much claner ↵Juan Linietsky2017-08-234-146/+268
| | | | | | now. Also changed PropertyInfo to include informatino about class names.
* Remove an assignment to selfHein-Pieter van Braam2017-08-231-1/+0
| | | | | This line does a = a and has a FIXME line. It seems that reduz can't think of a reason for it either, so here it goes.
* Removed EditorHelp::_scroll_changedWilson E. Alvarez2017-08-232-14/+0
|
* Merge pull request #10573 from tagcup/gizmo_aabb_scaling_orderRémi Verschelde2017-08-231-1/+5
|\ | | | | Fix the order of transformations for selection bounding box in spatial editor.
| * Fix the order of transformations for selection bounding box in spatial editor.Ferenc Arn2017-08-221-1/+5
| | | | | | | | | | | | This was broken in #7438 where the ordering of scaling in Basis::scale() was fixed, but this line of code (which relied on the incorrect behavior) wasn't updated correctly. Fixes #9894.
* | Merge pull request #10558 from RandomShaper/undo-after-auto-indentRémi Verschelde2017-08-231-1/+12
|\ \ | | | | | | Add ability to undo auto-indent
| * | Add ability to undo auto-indentPedro J. Estébanez2017-08-221-1/+12
| | | | | | | | | | | | Closes #10420.
* | | Merge pull request #10550 from djrm/pr_color_fixesRémi Verschelde2017-08-232-4/+24
|\ \ \ | |_|/ |/| | Child process connected message is now green.
| * | Ability to set script debugger reason text context.Daniel J. Ramirez2017-08-222-4/+24
| | |
* | | Merge pull request #10551 from djrm/pr_editor_fixesRémi Verschelde2017-08-231-0/+2
|\ \ \ | |_|/ |/| | | | | | | | Do not use old styles for tab buttons [ci skip]
| * | Do not use old styles for tab buttonsDaniel J. Ramirez2017-08-211-0/+2
| |/
* | Merge pull request #10538 from groud/fix_useless_separatorRémi Verschelde2017-08-221-1/+0
|\ \ | | | | | | Fix unneeded separator in Script Editor's Debug menu
| * | Fix uneeded separatorGilles Roudiere2017-08-221-1/+0
| | |
* | | Merge pull request #10507 from toger5/override_code_them_bgRémi Verschelde2017-08-222-2/+8
|\ \ \ | | | | | | | | added setting to override the theme background with editor theme color
| * | | added setting to override the theme background with editor theme colortoger52017-08-212-2/+8
| | | |
* | | | Merge pull request #10519 from toger5/remove_addition_borderRémi Verschelde2017-08-221-14/+2
|\ \ \ \ | | | | | | | | | | Remove addition border
| * | | | removed additional border function. (not needed with new styleboxes)toger52017-08-211-14/+2
| | | | |
* | | | | Merge pull request #10527 from hpvb/fix-10517Rémi Verschelde2017-08-221-1/+4
|\ \ \ \ \ | | | | | | | | | | | | Add null check to ScriptEditor get_current_tab_control() call
| * | | | | Add null check to ScriptEditor get_current_tab_control() callHein-Pieter van Braam2017-08-221-1/+4
| | |_|_|/ | |/| | | | | | | | | | | | | This fixes #10517
* / | | | Fixed build for Visual StudioMason Ashbridge2017-08-211-1/+0
|/ / / /
* | | | Merge pull request #10340 from Rubonnek/remove-unnecessary-assignmentsRémi Verschelde2017-08-227-32/+16
|\ \ \ \ | | | | | | | | | | Removed unnecessary assignments
| * | | | Removed unnecessary assignmentsWilson E. Alvarez2017-08-217-32/+16
| |/ / /
* | | | Merge pull request #10254 from marcelofg55/masterRémi Verschelde2017-08-221-0/+2
|\ \ \ \ | | | | | | | | | | Added notification const NOTIFICATION_WM_ABOUT
| * | | | Added notification const NOTIFICATION_WM_ABOUTMarcelo Fernandez2017-08-171-0/+2
| | | | |
* | | | | Merge pull request #10351 from neikeq/enums-are-for-the-weakJuan Linietsky2017-08-213-37/+37
|\ \ \ \ \ | |_|_|_|/ |/| | | | ClassDB: Provide the enum name of integer constants
| * | | | ClassDB: Provide the enum name of integer constantsIgnacio Etcheverry2017-08-203-37/+37
| | | | |
* | | | | Merge pull request #10433 from djrm/pr_svg_supportRémi Verschelde2017-08-213113-57191/+8571
|\ \ \ \ \ | | | | | | | | | | | | SVG support