Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-08-14 | Merge pull request #20747 from hpvb/fix-20184 | Rémi Verschelde | |
Do not call _update_actions when only changing deadzone | |||
2018-08-14 | Merge pull request #20976 from Chaosus/warning_color | Rémi Verschelde | |
Add warning color to output log | |||
2018-08-14 | Merge pull request #20952 from hpvb/fix-17963 | Rémi Verschelde | |
When starting up try creating directories recursively | |||
2018-08-14 | When starting up try creating directories recursively | Hein-Pieter van Braam | |
Previously we had a check to see if cache and data directories exist and another check to try to make them if they do not. However the second check was never reached if we don't have the directories in question. Furthermore for cache directories on Linux people who never started a desktop environment we need to recurisively create the XDG directory as well as the godot specific directory. This fixes #17963 | |||
2018-08-13 | Add warning color to output log | Chaosus | |
2018-08-13 | Merge pull request #20953 from hpvb/fix-20322 | Rémi Verschelde | |
Don't try to update the visual shader graph if it doesn't exist yet | |||
2018-08-13 | Merge pull request #20956 from volzhs/update-help | Rémi Verschelde | |
Update help doc when changing font size | |||
2018-08-13 | Merge pull request #20963 from akien-mga/remove-tmp-tpz | Rémi Verschelde | |
Remove cached .tpz archive after templates download and install | |||
2018-08-13 | Merge pull request #20971 from swarnimarun/new-resource-option | Rémi Verschelde | |
Fix for resource save dialog call | |||
2018-08-13 | Fix for resource save dialog call | Swarnim Arun | |
to make sure the resource save opens in the current folder when using right click to do it. | |||
2018-08-13 | Merge pull request #20731 from YeldhamDev/scr_editor_context_fix | Rémi Verschelde | |
Fix wrong context menu when right-clicking script/doc files | |||
2018-08-13 | Merge pull request #20155 from Tunous/line-edit-clear | Rémi Verschelde | |
Add clear button to search fields | |||
2018-08-13 | Remove cached .tpz archive after templates download and install | Rémi Verschelde | |
Closes #20640. | |||
2018-08-13 | Merge pull request #20778 from ibrahn/remove-zero-append-typos | Rémi Verschelde | |
removed some surplus null appends that got typoed in 0e29f7974b59e444… | |||
2018-08-13 | Merge pull request #20680 from Calinou/text-editor-faster-caret-blink | Rémi Verschelde | |
Make the default text editor caret blink speed faster | |||
2018-08-13 | Merge pull request #20670 from Calinou/script-editor-zoom-hidpi | Rémi Verschelde | |
Fix zoom display in the script editor on hiDPI displays | |||
2018-08-13 | Merge pull request #20668 from SaracenOne/enum_help_fix | Rémi Verschelde | |
Fixes the hyperlinks for enumerators inside classes in the editor help. | |||
2018-08-13 | Merge pull request #20587 from groud/fix_2deditor_scrollable_zone | Rémi Verschelde | |
Fixes bugs on the 2D editor scrollable area | |||
2018-08-13 | Update help doc when changing font size | volzhs | |
2018-08-12 | Don't try to update the visual shader graph if it doesn't exist yet | Hein-Pieter van Braam | |
When setting shader mode on a visual shader that was just created in the editor we try to _update_graph(). However, the graph does not yet exist in the visualshadereditor. This gets populated in VisualShaderEditor::edit() which hasn't been called yet. This PR simply changes the logic to not try to update the non-existent graph. This fixes #20322 | |||
2018-08-12 | Fix gizmos submenu | Juan Linietsky | |
2018-08-11 | Merge pull request #20928 from JFonS/gizmo_enabling | Juan Linietsky | |
Improvements on the gizmo disabling menu and icon selection bugfix | |||
2018-08-11 | Improvements on the gizmo disabling menu and icon selection bugfix | JFonS | |
2018-08-11 | Do not use theme to set LineEdit right_icon | Łukasz Rutkowski | |
2018-08-11 | Add clear text button to LineEdit | Łukasz Rutkowski | |
- Add pressed state to clear button - Enable clear button on all inputs with search icon - Remove duplicate clear buttons - Fix rendering of icon for center and right alignments - Add clear button to more search fields - Add clear icon to default theme - Add method to control enabled state of clear button - Add property to enable clear button from inspector | |||
2018-08-10 | Added system for GDScript warnings | George Marques | |
- Count and panel per script. - Ability to disable warnings per script using special comments. - Ability to disable warnings globally using Project Settings. - Option to treat enabled warnings as errors. | |||
2018-08-10 | Merge pull request #14704 from poke1024/colorconstants | Juan Linietsky | |
Allow some non-integer built-in constants in gdscript | |||
2018-08-09 | Merge pull request #20585 from MarianoGnu/tileset_editor | Juan Linietsky | |
New TileSet Editor | |||
2018-08-09 | too much information, made it less information | Juan Linietsky | |
2018-08-09 | New TileSet Editor | MAriano Javier Suligoy | |
2018-08-09 | Information sign for MarianoGNU | Juan Linietsky | |
2018-08-09 | Merge pull request #20584 from JFonS/gizmo_enabling | Juan Linietsky | |
New gizmo structure and gizmo disabling menu | |||
2018-08-09 | New gizmo structure and new gizmo disabling menu | JFonS | |
2018-08-08 | -Add Expression class, used to evaluate expressions | Juan Linietsky | |
-Added expression evaluation to EditorSpinSlider, fixes #20813, fixes #18932 | |||
2018-08-08 | Fix a typo in a TTR() call | Hugo Locurcio | |
2018-08-08 | Merge pull request #20737 from Calinou/use-standard-button-texts | Juan Linietsky | |
Use a standard "OK" text for confirmation buttons in error dialogs | |||
2018-08-07 | Several improvements to inspector. | Juan Linietsky | |
-Added optional horizontal/vertical modes for vector editing (default false for vec2, true for vec3) -Some clean ups with fonts and styles | |||
2018-08-07 | removed some surplus null appends that got typoed in ↵ | Ibrahn Sahir | |
0e29f7974b59e4440cf02e1388fb9d8ab2b5c5fd A couple of null appends got typoed to append a '0' character instead. Removed them here since String already takes care of the null terminator for us. | |||
2018-08-06 | Respect process order for out of order skeleton bones (fixes GLTF2 import ↵ | Juan Linietsky | |
issues). | |||
2018-08-06 | Several fixes to GLTF2 importer | Juan Linietsky | |
2018-08-06 | Added proper import support for 3D and Array textures | Juan Linietsky | |
2018-08-05 | Do not call _update_actions when only changing deadzone | Hein-Pieter van Braam | |
Because changing the deadzone with a click happens during _propagate_mouse_event the tree is always blocked leading to a crash. We don't actually need to update actions here anyway. This fixes #20184 | |||
2018-08-05 | Use a standard "OK" text for confirmation buttons in error dialogs | Hugo Locurcio | |
[ci skip] | |||
2018-08-05 | Fix wrong context menu when right-clicking script/doc files | Michael Alexsander Silva Dias | |
2018-08-04 | Implemented IK | AndreaCatania | |
2018-08-02 | Make the default text editor caret blink speed faster | Hugo Locurcio | |
2018-08-02 | Fix zoom display in the script editor on hiDPI displays | Hugo Locurcio | |
2018-08-02 | Fixes the hyperlinks for enumerators inside classes in the editor help. | Saracen | |
2018-07-31 | Allow some non-integer built-in constants in gdscript | Bernhard Liebl | |
2018-07-29 | Add support for line continuations (wtf) in obj format, fixes #7974 | Juan Linietsky | |