Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-08-24 | Drop old ShaderGraph code, obsoleted by VisualShader | Rémi Verschelde | |
2018-08-22 | Merge pull request #21274 from YeldhamDev/meshlib_editor_fixes | Rémi Verschelde | |
Fix MeshLibrary editor | |||
2018-08-21 | Fix MeshLibrary editor | Michael Alexsander Silva Dias | |
2018-08-21 | Merge pull request #21252 from vnen/remove-autoload-init | Rémi Verschelde | |
Disable scripting and physics early in EditorNode | |||
2018-08-20 | Disable scripting and physics early in EditorNode | George Marques | |
This avoids issues with scripts being instanced before this is set, like autoloads. | |||
2018-08-20 | Massive rewrite to AnimationTree. Many APIs changed in order to: | Juan Linietsky | |
-Reuse resources -Expose properties in AnimationTree | |||
2018-08-15 | Merge pull request #19837 from willnationsdev/plugin-utilities | Rémi Verschelde | |
Add PluginConfigDialog. | |||
2018-08-14 | Merge pull request #20997 from Gamblify/add_files_to_tree_view | Rémi Verschelde | |
Add a way to disable the split view in the FileSystem dock | |||
2018-08-14 | Avoid scripts from being opened in same inspector, closes #20111 | Juan Linietsky | |
2018-08-14 | Merge pull request #20621 from YeldhamDev/bottom_panel_min | Rémi Verschelde | |
Adjust bottom panel's minimal height for the expand icon | |||
2018-08-14 | Add a way to disable the split view | groud | |
Also add a parameter as the max height before split | |||
2018-08-13 | Add warning color to output log | Chaosus | |
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-06 | Added proper import support for 3D and Array textures | Juan Linietsky | |
2018-08-05 | Use a standard "OK" text for confirmation buttons in error dialogs | Hugo Locurcio | |
[ci skip] | |||
2018-08-04 | Implemented IK | AndreaCatania | |
2018-07-30 | Adjust bottom panel's minimal height for the expand icon | Michael Alexsander Silva Dias | |
2018-07-29 | It is now possible to import images as a separate resource, closes #5738 and ↵ | Juan Linietsky | |
likely many others | |||
2018-07-29 | Merge pull request #15269 from ianb96/context_menu_improvements | Juan Linietsky | |
Context Menu Improvements | |||
2018-07-27 | Do conversion of scene preview icon at the end, improves save performance a ↵ | Juan Linietsky | |
bit. Closes #14387 | |||
2018-07-26 | Add PluginConfigDialog, EditorPluginSettings GUI | Will Nations | |
2018-07-26 | context menu improvements | Ian | |
2018-07-26 | Merge pull request #19257 from volzhs/edit-visual-script | Rémi Verschelde | |
Open internal visual script editor while use external editor is on | |||
2018-07-26 | Reduce unnecessary COW on Vector by make writing explicit | Hein-Pieter van Braam | |
This commit makes operator[] on Vector const and adds a write proxy to it. From now on writes to Vectors need to happen through the .write proxy. So for instance: Vector<int> vec; vec.push_back(10); std::cout << vec[0] << std::endl; vec.write[0] = 20; Failing to use the .write proxy will cause a compilation error. In addition COWable datatypes can now embed a CowData pointer to their data. This means that String, CharString, and VMap no longer use or derive from Vector. _ALWAYS_INLINE_ and _FORCE_INLINE_ are now equivalent for debug and non-debug builds. This is a lot faster for Vector in the editor and while running tests. The reason why this difference used to exist is because force-inlined methods used to give a bad debugging experience. After extensive testing with modern compilers this is no longer the case. | |||
2018-07-25 | Add menu buttons to open the project and editor data folders | Hugo Locurcio | |
2018-07-25 | Open internal visual script editor while use external editor is on | volzhs | |
2018-07-24 | Merge pull request #19225 from Paulb23/open_all_files_in_script_editor | Max Hilbrunner | |
Open all files in script editor | |||
2018-07-24 | Removed unnecessary assignments | Wilson E. Alvarez | |
2018-07-22 | Allow opening and editing of any utf_8 file in script editor | Paulb23 | |
2018-07-20 | -Fix tooltips in inspector, now they show as rich text. | Juan Linietsky | |
2018-07-20 | Make Update Spinner popup use radio items | Michael Alexsander Silva Dias | |
2018-07-19 | -Project/Editor settings now use new inspector | Juan Linietsky | |
-Project/Editor settings now show tooltips properly -Settings thar require restart now will show a restart warning -Video driver is now visible all the time, can be changed easily -Added function to request current video driver | |||
2018-07-18 | Several improvements to editor inspector usability and style | Juan Linietsky | |
2018-07-18 | Export: Properly reload preset when opening dialog | Rémi Verschelde | |
Fixes #20119 where newly installed templates were not detected. Also fix a bug with preset deletion where it would attempt to edit an already removed preset. For this I made it so that ItemList::deselect_all() also resets `current` to -1, as a manual ItemList::deselect(idx) already does. | |||
2018-07-18 | Merge pull request #20185 from volzhs/audio-preview | Rémi Verschelde | |
Add audio preview to Inspector dock | |||
2018-07-18 | Fix copying ttf, otf by DND to editor | volzhs | |
regression from d65ac7378c77648124e0e8acd09cea8fd0d104cd | |||
2018-07-17 | Add audio stream preview to Inspector dock | volzhs | |
2018-07-15 | Added small icon to expand the bottom panel (and shortcut too) | Juan Linietsky | |
2018-07-14 | Visual Shaders are back. | Juan Linietsky | |
2018-07-06 | Support for CPU based particles, which aids compatibility with OpenGL ES 2.0 | Juan Linietsky | |
2018-07-04 | Merge pull request #19849 from willnationsdev/expose-script-create-dialog | Max Hilbrunner | |
Expose ScriptCreateDialog to EditorPlugin | |||
2018-07-04 | Expose ScriptCreateDialog to EditorPlugin | willnationsdev | |
2018-07-03 | Merge pull request #19192 from marcelofg55/undo_redo_msg | Max Hilbrunner | |
Add a message when there is nothing to Undo or Redo | |||
2018-07-01 | -Fix in animationplayback, sound would be cut on loop | Juan Linietsky | |
-Fix on scene importer, keeping changes to animation tracks was not working | |||
2018-06-29 | Revert "Fix saving unmodified scenes and resources" | Rémi Verschelde | |
This reverts commits 28ab60422d648d43d219186ea0ecffce1645188f and 7821b70a00768cb99c0b48450eabe5a687ae276c. Fixes #19576, and likely the fact that subresources are no longer saved when saving scenes with no change. | |||
2018-06-26 | -Add root motion support in AnimationTree. | Juan Linietsky | |
-Add RootMotionView, to debug root motion in 3D (disabled in runtime) | |||
2018-06-25 | added BlendSpace1D editor plugin | Thomas Herzog | |
This commit also fixes a crash in the BlendSpace2D as well as correct the drawing of the x-zero indicator in the BlendSpace2D editor plugin. | |||
2018-06-25 | rename BlendSpace to BlendSpace2D | Thomas Herzog | |