aboutsummaryrefslogtreecommitdiff
path: root/editor
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | | | | | | Fixed file system dialog iconsDaniel J. Ramirez2017-09-122-23/+7
| | | | | | | | |
* | | | | | | | | Merge pull request #10568 from marcelofg55/surround_fixesHein-Pieter van Braam2017-09-122-61/+67
|\ \ \ \ \ \ \ \ \ | |/ / / / / / / / |/| | | | | | | | Fixed issues with surround sound on audio server
| * | | | | | | | Fixed issues with surround sound on audio serverMarcelo Fernandez2017-09-122-61/+67
| | |_|_|/ / / / | |/| | | | | |
* | | | | | | | Fixed some inconsistent styles, plus some cleanupDaniel J. Ramirez2017-09-125-31/+20
| | | | | | | |
* | | | | | | | Improved VS node coloringDaniel J. Ramirez2017-09-121-2/+6
| | | | | | | |
* | | | | | | | Improved alternative size thumbnail generationDaniel J. Ramirez2017-09-1215-55/+138
| | | | | | | |
* | | | | | | | Improved theme generation, and other fixesDaniel J. Ramirez2017-09-125-164/+217
|/ / / / / / /
* | | | | | | Merge pull request #11066 from SaracenOne/animation_external_resourcesHein-Pieter van Braam2017-09-122-8/+46
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Allow animations to be saved to external files during scene import.
| * | | | | | | Allow animations to be saved to external files during scene import.SaracenOne2017-09-112-8/+46
| | |_|/ / / / | |/| | | | |
* | | | | | | Merge pull request #11047 from toger5/interpolation_chnageRémi Verschelde2017-09-123-51/+40
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Modify inertia implementation for freelook and orbit
| * | | | | | | fix always updating +removed print +use EDITOR_DEFtoger52017-09-111-12/+10
| | | | | | | |
| * | | | | | | Modify inertia implementation for freelook and orbittoger52017-09-073-45/+36
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - freelook now uses position based inertia (holding a key for a specific time always rults in the same distance traveled independent of inertia setting) - orbit inertia now is angle bases. (not transformation based) -> camera always takes the same path. - added setting for orbit inertia - added setting hints for freelook settings.
| * | | | | | | Revert "Removed camera interpolation in orthogonal mode (I have no idea how ↵toger52017-09-071-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | to fix this due to how orthogonal works), closes #10718" This reverts commit 895140389a7306eafc9a36f51d892ece0001f223.
* | | | | | | | Merge pull request #11025 from volzhs/script-editorRémi Verschelde2017-09-122-0/+7
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Fit script editor grid with others
| * | | | | | | | Fit script editor grid with othersvolzhs2017-09-072-0/+7
| | |_|_|_|_|_|/ | |/| | | | | |
* | | | | | | | Merge pull request #11020 from toger5/theme_animation_editor_colorsRémi Verschelde2017-09-122-93/+100
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | removed hardcoded color and added theme update for animation editor
| * | | | | | | | update icons for animation_player_plugin (top bar)toger52017-09-091-56/+62
| | | | | | | | |
| * | | | | | | | update for icons on theme change animation editortoger52017-09-091-32/+28
| | | | | | | | |
| * | | | | | | | removed hardcoded colors in animation editortoger52017-09-091-5/+10
| |/ / / / / / /
* | | | | | | | Merge pull request #11000 from Kibouo/iss10842Rémi Verschelde2017-09-121-1/+2
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Fixes the deletion of an export preset's name when deleting the preset above it.
| * | | | | | | | Fixed clearing of an export preset's name when deleting the one above it.Mihaly Csonka2017-09-121-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Deleting an export preset cleared the name of the item below it. This was caused by ProjectExportDialog::_edit_preset(-1) which sets the deleted preset's data to empty values. This on its turn called ProjectExportDialog::_name_changed() which operates on the new current preset (the one under the deleted item). Fixes issue #10842
* | | | | | | | | Many fixes to visual script, changed virtuals override for a proper selector.Juan Linietsky2017-09-122-5/+31
| | | | | | | | |
* | | | | | | | | Merge pull request #10908 from hpvb/fix-unused-variablesRémi Verschelde2017-09-1210-41/+13
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | Fix unused variable warnings
| * | | | | | | | | Fix unused variable warningsHein-Pieter van Braam2017-09-0810-41/+13
| | |_|_|/ / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | The forth in my quest to make Godot 3.x compile with -Werror on GCC7
* | | | | | | | | Merge pull request #11007 from saltares/issue-9988Rémi Verschelde2017-09-121-1/+1
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | Renames _add_child_below_node() to add_child_below_node(). Fixes #9988.
| * | | | | | | | | Renames _add_child_below_node() to add_child_below_node(). Closes #9988.David Saltares2017-09-051-1/+1
| | | | | | | | | |
* | | | | | | | | | Merge pull request #11052 from djrm/pr_missing_iconsRémi Verschelde2017-09-126-8/+34
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | Added some missing icons
| * | | | | | | | | | Added some missing iconsDaniel J. Ramirez2017-09-076-8/+34
| | | | | | | | | | |
* | | | | | | | | | | Merge pull request #11026 from hpvb/fix-assign-in-ifRémi Verschelde2017-09-123-25/+40
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Remove assignment and declarations in if statements
| * | | | | | | | | | | Remove assignment and declarations in if statementsHein-Pieter van Braam2017-09-083-26/+40
| | |_|/ / / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | After discussing with @reduz and @akien-mga it was decided that we do not allow assignments or declarations in if statements. This PR removes the instances of this I could find by automated means.
* | | | | | | | | | | Merge pull request #11058 from hpvb/fix-11043Rémi Verschelde2017-09-121-1/+1
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Don't set editor_hint true for project manager
| * | | | | | | | | | | Don't set editor_hint true for project managerHein-Pieter van Braam2017-09-101-1/+1
| |/ / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Due to this setting several callbacks get initialized but never used. For instance void discoverer_callback(). This callback only initializes the GDNativeSingletonDiscover *discoverer when called. This doesn't happen in project manager and this in turn causes a call to memdelete(NULL) which is invalid. This also seems to speed up startup a little. This fixes #11043 and fixes #10992
* | | | | | | | | | | Merge pull request #11057 from hpvb/fix-various-warningsRémi Verschelde2017-09-124-5/+5
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Fix various assorted warnings
| * | | | | | | | | | | Fix various assorted warningsHein-Pieter van Braam2017-09-084-6/+5
| |/ / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix various warnings that don't have enough instances to merit individual commits. Also fixes a potential bug in audio_server.cpp.
* | | | | | | | | | | Merge pull request #11032 from marcelofg55/masterRémi Verschelde2017-09-122-1/+23
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Added an option to reset the bus volume to 0db
| * | | | | | | | | | | Added an option to reset the bus volume to 0dbMarcelo Fernandez2017-09-062-1/+23
| | |_|_|_|_|_|_|_|/ / | |/| | | | | | | | |
* | | | | | | | | | | Merge pull request #11041 from hpvb/fix-clang-format-errorRémi Verschelde2017-09-121-1/+0
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix serveral recent new clang-format errors [ci skip]
| * | | | | | | | | | | Fix serveral recent new clang-format errorsHein-Pieter van Braam2017-09-081-1/+0
| | |/ / / / / / / / / | |/| | | | | | | | |
* | | | | | | | | | | Merge pull request #11138 from NathanWarden/change_cancel_to_donePoommetee Ketson2017-09-121-0/+1
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Changed the text from "Cancel" to "Done" in the "Fix Dependencies" dialog.
| * | | | | | | | | | | Changed the text from "Cancel" to "Done" in the "Fix Dependencies" dialog.Nathan Warden2017-09-091-0/+1
| |/ / / / / / / / / /
* | | | | | | | | | | Merge pull request #11163 from marcelofg55/project_grayedPoommetee Ketson2017-09-122-14/+31
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Not found projects are grayed instead of removed at the Project Manager
| * | | | | | | | | | | Not found projects are grayed instead of removed at the Project ManagerMarcelo Fernandez2017-09-112-14/+31
| |/ / / / / / / / / /
* / / / / / / / / / / Fix duplication of nodes resulting in shared metadataBojidar Marinov2017-09-111-1/+8
|/ / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #9547
* | | | | | / / / / Restored auto snapping of controls to pixels, fixes #10847 and probably ↵Juan Linietsky2017-09-071-0/+3
| |_|_|_|_|/ / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | several more issues. Made it optional in the project settings but defaults to true.
* | | | | | | | | Removed camera interpolation in orthogonal mode (I have no idea how to fix ↵Juan Linietsky2017-09-071-1/+1
|/ / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | this due to how orthogonal works), closes #10718
* | | | / / / / -Fixed changes to default input actions not working, closes #10502Juan Linietsky2017-09-061-4/+4
| |_|_|/ / / / |/| | | | | | | | | | | | | | | | | | | | -Added Array.duplicate() method, needed to fix above
* | | | | | | Remove dead ButtonGroup codeRémi Verschelde2017-09-069-9/+0
|/ / / / / /
* | | | | / Added a warning for when a PC compression is not found for the project, ↵Juan Linietsky2017-09-051-1/+8
| |_|_|_|/ |/| | | | | | | | | | | | | | closes #10626
* | | | | fixed log colorstoger52017-09-052-4/+1
| | | | |
* | | | | Merge pull request #10874 from Noshyaar/pr-actionRémi Verschelde2017-09-042-18/+38
|\ \ \ \ \ | | | | | | | | | | | | ProjectSettings: enhance add action error, fix confirm dialog