Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-12-17 | Make the AnimationTree editor's path section more obvious | Michael Alexsander Silva Dias | |
2018-12-17 | Fix sometimes uninitialized variable warning raised by Xcode 9.4.1 | Ré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-17 | Merge pull request #24410 from YeldhamDev/graph_editors_title_fix | Rémi Verschelde | |
Fix titles in graph editors being invisible when headers are enabled | |||
2018-12-16 | Fix titles in graph editors being invisible when headers are enabled | Michael Alexsander Silva Dias | |
2018-12-16 | Change global timestamp behaviour earlier | Alexandre LittleWhite Laurent | |
2018-12-16 | Ensure cursor is visible when EditorSpinSlider exits the tree | Rémi Verschelde | |
Supersedes and closes #22581. | |||
2018-12-16 | Merge pull request #24405 from guilhermefelipecgs/fix_undo_fsm | Rémi Verschelde | |
Fix "undo" of the state machine losing node's position | |||
2018-12-16 | Fix "undo" of the state machine losing node's position | Guilherme Felipe | |
2018-12-16 | Merge pull request #24397 from volzhs/builtin-script | Rémi Verschelde | |
Create built-in script properly | |||
2018-12-16 | Merge pull request #19501 from Zylann/custom_loaders | Rémi Verschelde | |
Added basic support for custom resource savers and loaders | |||
2018-12-16 | Merge pull request #24376 from Calinou/tweak-editor-status-colors | Rémi Verschelde | |
Tweak editor status colors (success, warning, error) | |||
2018-12-16 | Merge pull request #24308 from mineevgleb/#24303-persist-project-sorting-order | Rémi Verschelde | |
#24303: remember sorting order in the project manager | |||
2018-12-16 | Create built-in script properly | volzhs | |
2018-12-15 | Tweak 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-15 | 24303: remember sorting order in the project manager | Gleb Mineev | |
2018-12-15 | Added basic support for custom resource savers and loaders | Marc Gilleron | |
2018-12-14 | Merge pull request #23464 from GameCoderStudios/master | Rémi Verschelde | |
Ability to pick child nodes of scenes instances marked with "Editable… | |||
2018-12-14 | Merge pull request #24333 from YeldhamDev/filechooser_folder_icon | Rémi Verschelde | |
Change EditorLineEditFileChooser to use the "Folder" icon | |||
2018-12-14 | Merge pull request #24331 from mineevgleb/resource-undo-redo | Rémi Verschelde | |
#23231: make resource changes in a nested inspector undoable | |||
2018-12-13 | Change EditorLineEditFileChooser to use the "Folder" icon | Michael Alexsander Silva Dias | |
2018-12-13 | #23231: make resource changes in a nested inspector undoable | Gleb Mineev | |
2018-12-13 | Re-add missing save resource button in the inspector | Marc Gilleron | |
2018-12-13 | Revert "Use more subtle indentation guides in the script editor" | Rémi Verschelde | |
2018-12-13 | i18n: Sync translation template with current source | Rémi Verschelde | |
Also French translation update and misc fixes to source strings. | |||
2018-12-13 | i18n: Sync translations with Weblate | Rémi Verschelde | |
2018-12-12 | Merge pull request #24109 from remorse107/godotengine-path2d-editor-fix | Rémi Verschelde | |
Fixed Path2D Plugin Editor so segments can be split. | |||
2018-12-12 | Merge pull request #24203 from qichunren/fix_export_dialog_layout | Rémi Verschelde | |
Fix ExportDialog layout out of boundary when select a template. | |||
2018-12-12 | Merge pull request #24214 from marcelofg55/editor_audio_buses_fix | Rémi Verschelde | |
Fix EditorAudioBuses not updating when changing to a device with different channels | |||
2018-12-12 | Merge pull request #24241 from Rubonnek/move-to-initializer-list | Rémi Verschelde | |
Moved member variables to initializer list | |||
2018-12-12 | Merge pull request #24293 from akien-mga/editorsettings-cleanup | Rémi Verschelde | |
Better code organization in EditorSettings::_load_defaults and cleanup of unused settings. | |||
2018-12-12 | EditorSettings: Remove unused settings from initial set | Rémi Verschelde | |
Fixes #24291. | |||
2018-12-12 | Code style: Sort EditorSettings initial set by section | Rémi Verschelde | |
2018-12-11 | Moved member variables to initializer list | Wilson E. Alvarez | |
2018-12-11 | Fix EditorAudioBuses not updating when changing to a device with different ↵ | Marcelo Fernandez | |
channels | |||
2018-12-11 | Merge pull request #23361 from mrcdk/wav_loop_backward | Rémi Verschelde | |
Add backward looping support to AudioStreamSample (wav files) | |||
2018-12-11 | Merge pull request #24224 from BastiaanOlij/flip_bitangent | Rémi Verschelde | |
Reverse bitangent on everythings | |||
2018-12-11 | Merge pull request #24278 from MarianoGnu/script_editor | Rémi Verschelde | |
Fix "index -1 out of range" error spam. Fixes #24277 | |||
2018-12-11 | Fix "index -1 out of range" error spam when the Editor is using ↵ | Mariano Suligoy | |
translations. Fixes #24277 | |||
2018-12-11 | Fix ExportDialog layout out of boundary when select a template. | qichunren | |
2018-12-11 | Fix "blocked > 0" error when selecting an item in the Search Help dialog | Michael Alexsander Silva Dias | |
2018-12-10 | Properly reselect duplicated visual shader nodes | Andrii Doroshenko (Xrayez) | |
This makes it much easier to drag duplicated nodes away from original ones. | |||
2018-12-09 | Merge pull request #20609 from YeldhamDev/menu_hover_explicit | Rémi Verschelde | |
Make opening menus with the same parent on mouse focus explicit | |||
2018-12-09 | Merge pull request #20725 from Calinou/textedit-subtle-indent-guides | Rémi Verschelde | |
Use more subtle indentation guides in the script editor | |||
2018-12-09 | Merge pull request #24236 from Xrayez/fix-20212 | Rémi Verschelde | |
Fix duplicating visual shader nodes | |||
2018-12-09 | Cleanup some unused controls in the editor's top bar | Michael Alexsander Silva Dias | |
2018-12-09 | Fix duplicating visual shader nodes | Andrii Doroshenko (Xrayez) | |
2018-12-08 | Minor changes to the File menu in the Script Editor | Michael Alexsander Silva Dias | |
2018-12-08 | Reverse bitangent on everythings to ensure default normal map behavriour is ↵ | Bastiaan Olij | |
consistent | |||
2018-12-07 | Merge pull request #22437 from DualMatrix/wrong_prop_warning | Rémi Verschelde | |
Added warning when trying to load resource of wrong type in editor. | |||
2018-12-07 | Merge pull request #22535 from DualMatrix/editor_value_cap | Rémi Verschelde | |
Fixed editor inspector ranges capping values at 65535. |