summaryrefslogtreecommitdiff
path: root/editor
AgeCommit message (Collapse)Author
2018-12-17Make the AnimationTree editor's path section more obviousMichael Alexsander Silva Dias
2018-12-17Fix sometimes uninitialized variable warning raised by Xcode 9.4.1Rémi Verschelde
Fixes this warning raised by Travis CI on macOS: ``` editor/plugins/polygon_2d_editor_plugin.cpp:95:6: warning: variable 'skeleton' is used uninitialized whenever 'if' condition is true [-Wsometimes-uninitialized] if (!node->has_node(node->get_skeleton())) { ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ editor/plugins/polygon_2d_editor_plugin.cpp:106:7: note: uninitialized use occurs here if (!skeleton) { ^~~~~~~~ editor/plugins/polygon_2d_editor_plugin.cpp:95:2: note: remove the 'if' if its condition is always false if (!node->has_node(node->get_skeleton())) { ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ editor/plugins/polygon_2d_editor_plugin.cpp:94:22: note: initialize the variable 'skeleton' to silence this warning Skeleton2D *skeleton; ^ = NULL ```
2018-12-17Merge pull request #24410 from YeldhamDev/graph_editors_title_fixRémi Verschelde
Fix titles in graph editors being invisible when headers are enabled
2018-12-16Fix titles in graph editors being invisible when headers are enabledMichael Alexsander Silva Dias
2018-12-16Change global timestamp behaviour earlierAlexandre LittleWhite Laurent
2018-12-16Ensure cursor is visible when EditorSpinSlider exits the treeRémi Verschelde
Supersedes and closes #22581.
2018-12-16Merge pull request #24405 from guilhermefelipecgs/fix_undo_fsmRémi Verschelde
Fix "undo" of the state machine losing node's position
2018-12-16Fix "undo" of the state machine losing node's positionGuilherme Felipe
2018-12-16Merge pull request #24397 from volzhs/builtin-scriptRémi Verschelde
Create built-in script properly
2018-12-16Merge pull request #19501 from Zylann/custom_loadersRémi Verschelde
Added basic support for custom resource savers and loaders
2018-12-16Merge pull request #24376 from Calinou/tweak-editor-status-colorsRémi Verschelde
Tweak editor status colors (success, warning, error)
2018-12-16Merge pull request #24308 from mineevgleb/#24303-persist-project-sorting-orderRémi Verschelde
#24303: remember sorting order in the project manager
2018-12-16Create built-in script properlyvolzhs
2018-12-15Tweak editor status colors (success, warning, error)Hugo Locurcio
Some of the previous colors were "overbright" in the sense that some of their components were above 1, causing font anti-aliasing to look bad. These new colors should be easier on the eyes while fitting better with the rest of the editor's color palette.
2018-12-1524303: remember sorting order in the project managerGleb Mineev
2018-12-15Added basic support for custom resource savers and loadersMarc Gilleron
2018-12-14Merge pull request #23464 from GameCoderStudios/masterRémi Verschelde
Ability to pick child nodes of scenes instances marked with "Editable…
2018-12-14Merge pull request #24333 from YeldhamDev/filechooser_folder_iconRémi Verschelde
Change EditorLineEditFileChooser to use the "Folder" icon
2018-12-14Merge pull request #24331 from mineevgleb/resource-undo-redoRémi Verschelde
#23231: make resource changes in a nested inspector undoable
2018-12-13Change EditorLineEditFileChooser to use the "Folder" iconMichael Alexsander Silva Dias
2018-12-13#23231: make resource changes in a nested inspector undoableGleb Mineev
2018-12-13Re-add missing save resource button in the inspectorMarc Gilleron
2018-12-13Revert "Use more subtle indentation guides in the script editor"Rémi Verschelde
2018-12-13i18n: Sync translation template with current sourceRémi Verschelde
Also French translation update and misc fixes to source strings.
2018-12-13i18n: Sync translations with WeblateRémi Verschelde
2018-12-12Merge pull request #24109 from remorse107/godotengine-path2d-editor-fixRémi Verschelde
Fixed Path2D Plugin Editor so segments can be split.
2018-12-12Merge pull request #24203 from qichunren/fix_export_dialog_layoutRémi Verschelde
Fix ExportDialog layout out of boundary when select a template.
2018-12-12Merge pull request #24214 from marcelofg55/editor_audio_buses_fixRémi Verschelde
Fix EditorAudioBuses not updating when changing to a device with different channels
2018-12-12Merge pull request #24241 from Rubonnek/move-to-initializer-listRémi Verschelde
Moved member variables to initializer list
2018-12-12Merge pull request #24293 from akien-mga/editorsettings-cleanupRémi Verschelde
Better code organization in EditorSettings::_load_defaults and cleanup of unused settings.
2018-12-12EditorSettings: Remove unused settings from initial setRémi Verschelde
Fixes #24291.
2018-12-12Code style: Sort EditorSettings initial set by sectionRémi Verschelde
2018-12-11Moved member variables to initializer listWilson E. Alvarez
2018-12-11Fix EditorAudioBuses not updating when changing to a device with different ↵Marcelo Fernandez
channels
2018-12-11Merge pull request #23361 from mrcdk/wav_loop_backwardRémi Verschelde
Add backward looping support to AudioStreamSample (wav files)
2018-12-11Merge pull request #24224 from BastiaanOlij/flip_bitangentRémi Verschelde
Reverse bitangent on everythings
2018-12-11Merge pull request #24278 from MarianoGnu/script_editorRémi Verschelde
Fix "index -1 out of range" error spam. Fixes #24277
2018-12-11Fix "index -1 out of range" error spam when the Editor is using ↵Mariano Suligoy
translations. Fixes #24277
2018-12-11Fix ExportDialog layout out of boundary when select a template.qichunren
2018-12-11Fix "blocked > 0" error when selecting an item in the Search Help dialogMichael Alexsander Silva Dias
2018-12-10Properly reselect duplicated visual shader nodesAndrii Doroshenko (Xrayez)
This makes it much easier to drag duplicated nodes away from original ones.
2018-12-09Merge pull request #20609 from YeldhamDev/menu_hover_explicitRémi Verschelde
Make opening menus with the same parent on mouse focus explicit
2018-12-09Merge pull request #20725 from Calinou/textedit-subtle-indent-guidesRémi Verschelde
Use more subtle indentation guides in the script editor
2018-12-09Merge pull request #24236 from Xrayez/fix-20212Rémi Verschelde
Fix duplicating visual shader nodes
2018-12-09Cleanup some unused controls in the editor's top barMichael Alexsander Silva Dias
2018-12-09Fix duplicating visual shader nodesAndrii Doroshenko (Xrayez)
2018-12-08Minor changes to the File menu in the Script EditorMichael Alexsander Silva Dias
2018-12-08Reverse bitangent on everythings to ensure default normal map behavriour is ↵Bastiaan Olij
consistent
2018-12-07Merge pull request #22437 from DualMatrix/wrong_prop_warningRémi Verschelde
Added warning when trying to load resource of wrong type in editor.
2018-12-07Merge pull request #22535 from DualMatrix/editor_value_capRémi Verschelde
Fixed editor inspector ranges capping values at 65535.