summaryrefslogtreecommitdiff
path: root/editor/plugins
AgeCommit message (Collapse)Author
2022-10-31Merge pull request #42659 from kingoftheconnors/anim-tree-load-fail-alertRémi Verschelde
Add alert in anim trees if resource load fails
2022-10-31Merge pull request #67578 from KoBeWi/GEDITORRémi Verschelde
Unify usage of GLOBAL/EDITOR_GET
2022-10-31Merge pull request #68073 from timothyqiu/marker-3d-extentsRémi Verschelde
Make Marker3D gizmo resizable
2022-10-31Merge pull request #67588 from KoBeWi/if(!GDVIRTUAL_CALL)don'tRémi Verschelde
Simplify GDVIRTUAL_CALL calls
2022-10-31Merge pull request #67489 from timothyqiu/auto-select-allRémi Verschelde
Allow selecting SpinBox & LineEdit text when focus enters
2022-10-31Merge pull request #67786 from EricEzaM/67743-script-editor-shortcutsRémi Verschelde
Set the shortcut context for the edit/search/goto menus to the ScriptEditor so that shortcuts continue to work when FindReplaceBar is focused.
2022-10-31Merge pull request #68064 from ↵Rémi Verschelde
kleonc/sprite-frames-editor-fix-frame-index-calculation `SpriteFramesEditor` Fix calculating frame index from mouse position
2022-10-31Merge pull request #68003 from timothyqiu/camera-gizmo-selectRémi Verschelde
Make Camera3D gizmo clickable
2022-10-31Merge pull request #67445 from Zylann/rename_queue_deleteRémi Verschelde
Rename queue_delete => queue_free
2022-10-31Merge pull request #67580 from KoBeWi/little_thingsRémi Verschelde
Minor code improvements
2022-10-31Make Marker3D gizmo resizableHaoyu Qiu
2022-10-30`SpriteFramesEditor` Fix calculating frame index from mouse positionkleonc
2022-10-29Make Camera3D gizmo clickableHaoyu Qiu
2022-10-29Allow selecting SpinBox & LineEdit text when focus entersHaoyu Qiu
2022-10-27Merge pull request #67832 from Sauermann/fix-remove-unnecessary-castsClay John
Remove unnecessary casts
2022-10-27Merge pull request #66383 from aaronfranke/basis-from-eulerClay John
Clean up Basis from Euler code
2022-10-26Add math operators to Visual Shader node namesAlfred Reinold Baudisch
This change makes it easy, in the "Create Shader Node" dialog, to search for VS nodes by just typing the operator. For example, instead of typing "multiply", you can just type "*" and multiply nodes will be listed. This feature is inspired by Unreal Engine node graph editor's UX. Implements and closes https://github.com/godotengine/godot-proposals/issues/5663
2022-10-25Set the shortcut context for the edit/search/goto menus to the ScriptEditor ↵Eric M
so that shortcuts continue to work when FindReplaceBar is focused.
2022-10-24Rename queue_delete => queue_freeMarc Gilleron
# Conflicts: # editor/plugins/tiles/tiles_editor_plugin.cpp
2022-10-24Remove unnecessary castsMarkus Sauermann
button_add_item and button_add are both Button p_parent is a Node3D CanvasItem can never be cast to Viewport
2022-10-23Merge pull request #67390 from groud/more_conservative_terrain_paintingClay John
Make terrain painting not change neighbors centers bits
2022-10-21Merge pull request #67426 from MrBlockers/blurry-texture-previewClay John
Make texture preview filter setting content aware
2022-10-21Clean up Basis from Euler codeAaron Franke
2022-10-21Merge pull request #67314 from anvilfolk/quote-fixMax Hilbrunner
Fix single-quotes incorrectly escaped when dragging into script editor
2022-10-20Make texture preview and picker use mipmap filterMrBlockers
2022-10-20Make terrain painting not change neighbors centers bitsGilles Roudière
2022-10-19Merge pull request #66940 from aaronfranke/doc-get-tr-aabbMax Hilbrunner
Remove the global space `get_transformed_aabb` helper method
2022-10-19Merge pull request #67543 from clayjohn/PLU-defaultMax Hilbrunner
Use CameraAttributesPractical in the editor default environment
2022-10-19Simplify GDVIRTUAL_CALL callskobewi
2022-10-18Use CameraAttributesPractical in the editor default environmentclayjohn
This avoids forcing DoF in the editor when physical light units are enabled
2022-10-18Unify usage of GLOBAL/EDITOR_GETkobewi
2022-10-18Minor code improvementskobewi
2022-10-18Remove the global space `get_transformed_aabb` helper methodAaron Franke
2022-10-17Fix single-quotes incorrectly escaped when dragging into script editorJoão Martins
2022-10-17Merge pull request #64277 from KoBeWi/script_editor🧹🧹Rémi Verschelde
Reorganize script editor menu
2022-10-17Merge pull request #67411 from rburing/editor_cast_rays_in_physics_processRémi Verschelde
Node3D editor: cast rays in `NOTIFICATION_PHYSICS_PROCESS`
2022-10-15Fix case where mutex is never unlockedMarc Gilleron
2022-10-15Merge pull request #63332 from KoBeWi/static_images_aka_photosRémi Verschelde
Make some Image methods static
2022-10-15Separate Line and CurveLinear iconskobewi
2022-10-14Node3D editor: cast rays in NOTIFICATION_PHYSICS_PROCESSRicardo Buring
Fixes crashes in the editor with threaded physics (when dragging a scene into the viewport or when snapping a node to the floor).
2022-10-14Reorganize script editor menukobewi
2022-10-14Make some Image methods statickobewi
2022-10-14Redraw 2D viewport when scene changeskobewi
2022-10-13Optimize Convex CollisionJuan Linietsky
Implements the Gauss Mapping optimization to SAT convex collision test. * Described [here](https://ubm-twvideo01.s3.amazonaws.com/o1/vault/gdc2013/slides/822403Gregorius_Dirk_TheSeparatingAxisTest.pdf) by Dirk Gregorius. * Requires adding of face information to edges in MeshData * Took the chance to convert MeshData to LocalVector for performance.
2022-10-13Merge pull request #66337 from EricEzaM/sprite-framesRémi Verschelde
Ensure control built-in shortcuts are matched exactly & add shortcuts for SpriteFrames editor
2022-10-13Add shortcuts for SpriteFrames editor. Small renaming changes for clarity & ↵Eric M
consistency.
2022-10-13Merge pull request #59468 from EricEzaM/fix-zoom-shortcutsRémi Verschelde
Fix zoom in/out keyboard shortcuts not working
2022-10-11Fix source sort not saving in TileMap editorkobewi
2022-10-11Polish rendering driver refactor further (take 2)Pedro J. Estébanez
2022-10-11Merge pull request #67104 from Calinou/add-viewport-transparent-project-settingRémi Verschelde
Add a project setting to make the root viewport transparent