summaryrefslogtreecommitdiff
path: root/editor
AgeCommit message (Collapse)Author
2017-09-13Merge pull request #11207 from toger5/fixed_margin_for_themeHein-Pieter van Braam
fixed margin beeing squared
2017-09-13Merge pull request #11210 from toger5/fix_little_border_for_vieportGilles Roudiere
fixed border on the right of viewport
2017-09-13fixed border on the right of viewporttoger5
2017-09-13Style: Apply clang-format to @reduz's changesRémi Verschelde
[ci skip]
2017-09-12When method or property has no description, a link asks you to create itJuan Linietsky
2017-09-12fixed margin beeing squaredtoger5
2017-09-12DocData: Drop unused brief description for propertiesRémi Verschelde
2017-09-12Changed the doc class generation to individual files per class. It is also ↵Juan Linietsky
possible to save module files in module directories and the build system will recognize them.
2017-09-12Merge pull request #11204 from djrm/pr_fix_fs_iconsRémi Verschelde
Fixed file system dialog icons [ci skip]
2017-09-12Fixed file system dialog iconsDaniel J. Ramirez
2017-09-12Merge pull request #10568 from marcelofg55/surround_fixesHein-Pieter van Braam
Fixed issues with surround sound on audio server
2017-09-12Fixed some inconsistent styles, plus some cleanupDaniel J. Ramirez
2017-09-12Improved VS node coloringDaniel J. Ramirez
2017-09-12Improved alternative size thumbnail generationDaniel J. Ramirez
2017-09-12Improved theme generation, and other fixesDaniel J. Ramirez
2017-09-12Fixed issues with surround sound on audio serverMarcelo Fernandez
2017-09-12Merge pull request #11066 from SaracenOne/animation_external_resourcesHein-Pieter van Braam
Allow animations to be saved to external files during scene import.
2017-09-12Merge pull request #11047 from toger5/interpolation_chnageRémi Verschelde
Modify inertia implementation for freelook and orbit
2017-09-12Merge pull request #11025 from volzhs/script-editorRémi Verschelde
Fit script editor grid with others
2017-09-12Merge pull request #11020 from toger5/theme_animation_editor_colorsRémi Verschelde
removed hardcoded color and added theme update for animation editor
2017-09-12Merge pull request #11000 from Kibouo/iss10842Rémi Verschelde
Fixes the deletion of an export preset's name when deleting the preset above it.
2017-09-12Many fixes to visual script, changed virtuals override for a proper selector.Juan Linietsky
2017-09-12Merge pull request #10908 from hpvb/fix-unused-variablesRémi Verschelde
Fix unused variable warnings
2017-09-12Merge pull request #11007 from saltares/issue-9988Rémi Verschelde
Renames _add_child_below_node() to add_child_below_node(). Fixes #9988.
2017-09-12Merge pull request #11052 from djrm/pr_missing_iconsRémi Verschelde
Added some missing icons
2017-09-12Merge pull request #11026 from hpvb/fix-assign-in-ifRémi Verschelde
Remove assignment and declarations in if statements
2017-09-12Merge pull request #11058 from hpvb/fix-11043Rémi Verschelde
Don't set editor_hint true for project manager
2017-09-12Merge pull request #11057 from hpvb/fix-various-warningsRémi Verschelde
Fix various assorted warnings
2017-09-12Merge pull request #11032 from marcelofg55/masterRémi Verschelde
Added an option to reset the bus volume to 0db
2017-09-12Merge pull request #11041 from hpvb/fix-clang-format-errorRémi Verschelde
Fix serveral recent new clang-format errors [ci skip]
2017-09-12Fixed clearing of an export preset's name when deleting the one above it.Mihaly Csonka
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
2017-09-12Merge pull request #11138 from NathanWarden/change_cancel_to_donePoommetee Ketson
Changed the text from "Cancel" to "Done" in the "Fix Dependencies" dialog.
2017-09-12Merge pull request #11163 from marcelofg55/project_grayedPoommetee Ketson
Not found projects are grayed instead of removed at the Project Manager
2017-09-11fix always updating +removed print +use EDITOR_DEFtoger5
2017-09-11Fix duplication of nodes resulting in shared metadataBojidar Marinov
Fixes #9547
2017-09-11Allow animations to be saved to external files during scene import.SaracenOne
2017-09-11Not found projects are grayed instead of removed at the Project ManagerMarcelo Fernandez
2017-09-10Don't set editor_hint true for project managerHein-Pieter van Braam
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
2017-09-09Changed the text from "Cancel" to "Done" in the "Fix Dependencies" dialog.Nathan Warden
2017-09-09update icons for animation_player_plugin (top bar)toger5
2017-09-09update for icons on theme change animation editortoger5
2017-09-09removed hardcoded colors in animation editortoger5
2017-09-08Fix unused variable warningsHein-Pieter van Braam
The forth in my quest to make Godot 3.x compile with -Werror on GCC7
2017-09-08Remove assignment and declarations in if statementsHein-Pieter van Braam
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.
2017-09-08Fix various assorted warningsHein-Pieter van Braam
Fix various warnings that don't have enough instances to merit individual commits. Also fixes a potential bug in audio_server.cpp.
2017-09-08Fix serveral recent new clang-format errorsHein-Pieter van Braam
2017-09-07Added some missing iconsDaniel J. Ramirez
2017-09-07Restored auto snapping of controls to pixels, fixes #10847 and probably ↵Juan Linietsky
several more issues. Made it optional in the project settings but defaults to true.
2017-09-07Modify inertia implementation for freelook and orbittoger5
- 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.
2017-09-07Revert "Removed camera interpolation in orthogonal mode (I have no idea how ↵toger5
to fix this due to how orthogonal works), closes #10718" This reverts commit 895140389a7306eafc9a36f51d892ece0001f223.