summaryrefslogtreecommitdiff
path: root/editor
AgeCommit message (Collapse)Author
2022-03-06Merge pull request #58800 from rcorre/blender-navRémi Verschelde
Disable blender-style transforms in freelook.
2022-03-06Merge pull request #58783 from KoBeWi/change_in_peaceRémi Verschelde
Fix color pickers closing in editor settings
2022-03-06Merge pull request #58821 from ↵Rémi Verschelde
IgorKordiukiewicz/extend-script-popup-without-script Fixed issue where Extend Script option would show up even without script attached to the node
2022-03-06Fixed issue where Extend Script option would show up even without script ↵Igor Kordiukiewicz
attached to the node
2022-03-06Remove set_as_minsize()kobewi
2022-03-06Merge pull request #58788 from reduz/rename-streamtextureRémi Verschelde
Rename StreamTexture* to CompressedTexture*
2022-03-05Various code and documentation improvementskobewi
2022-03-05Disable blender-style tranforms in freelook.Ryan Roden-Corrent
It's common to bind instant_scale to s, which conflicts with WASD bindings in freelook mode. Fixes #58502.
2022-03-05Rename StreamTexture* to CompressedTexture*reduz
* Its not and will not be used for streaming. * Streaming will be implemented in 4.1 and it will work different. * It makes more sense to be called CompressedTexture since it imports and compresses texture files.
2022-03-05Fix animation resource name after duplicationHaoyu Qiu
2022-03-05Fix color pickers closing in editor settingskobewi
2022-03-05Merge pull request #53839 from EricEzaM/editor-settings-changed-settingsRémi Verschelde
Added ability to get list of editor settings changed when saving editor settings. Optimised settings changed notification.
2022-03-05Made use of EditorSettings 'settings changed' to optimise settings changed ↵Eric M
notifications.
2022-03-05Added ability to retrieve array of changed settings changed when it is saved.Eric M
2022-03-05Make name of editor file dialog filters translatableHaoyu Qiu
2022-03-04Merge pull request #58770 from YeldhamDev/some_crumbles_leftRémi Verschelde
Replace some bits of code left to work with the new `TabContainer`
2022-03-04Merge pull request #58727 from fire-forge/EditorSpinSlider_label_colorRémi Verschelde
Make EditorSpinSlider label color a theme property
2022-03-04Replace some bits of code left to work with the new `TabContainer`Michael Alexsander
2022-03-04Make EditorSpinSlider label color a theme propertyFireForge
2022-03-04Merge pull request #58758 from timothyqiu/audio-effect-iconRémi Verschelde
Update audio effect icon when theme changes
2022-03-04Add icon_normal_color to Button in editor themeRaul Santos
2022-03-05Update audio effect icon when theme changesHaoyu Qiu
2022-03-04Merge pull request #58691 from miremrie/absolute-file-path-in-file-browserRémi Verschelde
2022-03-04Merge pull request #58687 from YeldhamDev/the_beast_has_been_slainRémi Verschelde
2022-03-04Merge pull request #58741 from ↵Rémi Verschelde
Calinou/editor-visual-profiler-fix-light-font-color Fix font color in the editor visual profiler when using light theme
2022-03-04Merge pull request #58670 from KoBeWi/internal_debuggerRémi Verschelde
2022-03-04Merge pull request #58731 from Calinou/editor-theme-clamp-base-colorsRémi Verschelde
Clamp the editor theme's base colors to avoid various issues
2022-03-04Fix font color in the editor visual profiler when using light themeHugo Locurcio
Previously, white text would be drawn on a white background.
2022-03-04Merge pull request #58730 from ↵Rémi Verschelde
Calinou/editor-visual-profiler-use-background-color Use the editor background color for the visual profiler graph
2022-03-04Clamp the editor theme's base colors to avoid various issuesHugo Locurcio
This fixes the profiler backgrounds being black when using the light editor theme (which is a regression from using a negative contrast setting by default for the Light preset).
2022-03-04Use the editor background color for the visual profiler graphHugo Locurcio
This was already done for the general profiler.
2022-03-04Add node icons to the Sprite2D menuFireForge
2022-03-03Make `TabContainer` use `TabBar` internallyMichael Alexsander
2022-03-03Use vformat() instead of string concatenation inside TTR()Haoyu Qiu
2022-03-02Added property hint to id property in tile set atlas source editorIgor Kordiukiewicz
2022-03-02Allow absolute file paths in file dialogsmiremrie
2022-03-02Fix debugger not opening built-in scriptskobewi
2022-03-01Merge pull request #58632 from IgorKordiukiewicz/camera-preview-toggle-crashRémi Verschelde
Fixes camera preview toggle in additional editor viewports not disappearing corectly causing a crash
2022-03-01Merge pull request #58548 from V-Sekai/lod_lightmapsJFonS
Allow automatic lod when importing 3D scenes with Static Lightmaps
2022-03-01Fix scripts not saving when closingkobewi
2022-02-28Fixes camera preview toggle in additional editor viewports not disappearing ↵Igor Kordiukiewicz
corectly causing a crash
2022-02-27Fix crash on creation of `HSV2RGB/RGB2HSV` functions in visual shaderYuri Roubinsky
2022-02-25Allow automatic lod when importing 3D scenes with Static LightmapsK. S. Ernest (iFire) Lee
Avoid the normal merge procedure when uv2s are different and makes generating LODs happen after the lightmap generation
2022-02-25Improve popup window handling.bruvzg
Add window FLAG_POPUP and a platform specific routines to control popup auto-hiding and event forwarding.
2022-02-24Fix source picking with sortkobewi
2022-02-23Utilize mouse position when zooming with shortcuts in 2D editorHaoyu Qiu
2022-02-22Fix GIProbe gizmo out of bounds crashlawnjelly
The GIProbe gizmo was writing values in 3 dimensions to Vector2s. This error was previously being masked by the Vector2 accessor, but now results in a crash or ERR_FAIL message. This PR removes the Vector2s as they were unused.
2022-02-21Merge pull request #58399 from Sauermann/fix-bresenham-usageRémi Verschelde
Use bresenham_line() in EditorAtlasPacker::chart_pack
2022-02-21Merge pull request #58397 from Calinou/editor-font-preload-fix-typoRémi Verschelde
Fix typos in editor font preload dialog warning messages
2022-02-21Use bresenham_line() in EditorAtlasPacker::chart_packMarkus Sauermann