summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2023-01-13Merge pull request #71325 from reduz/refactor-project-setting-overridesRémi Verschelde
Refactor ProjectSetting overrides
2023-01-13Merge pull request #71329 from vnen/gdscript-fix-enum-value-resolutionRémi Verschelde
GDScript: Fix infinite recursion in resolution of enum values
2023-01-13Merge pull request #33733 from KoBeWi/seek_the_originRémi Verschelde
Reset animation on playback stop
2023-01-13Merge pull request #65370 from SaracenOne/tileset_editor_visibility_fixesRémi Verschelde
Fix contextual visibility of tileset and tilemap editors (again)
2023-01-13Merge pull request #70540 from vaartis/multiline-arrays-dictionariesRémi Verschelde
Implement export_multiline support for Array[String] and Dictionary
2023-01-13Merge pull request #70148 from KoBeWi/remove_all_restrictionsRémi Verschelde
Remove conditons for unfolding inspector sections
2023-01-13Merge pull request #63312 from bruvzg/one_clickRémi Verschelde
[Export] Add one-click deploy over SSH for the desktop exports.
2023-01-13Refactor ProjectSetting overridesJuan Linietsky
* Overrides no longer happen for set/get. * They must be checked with a new function: `ProjectSettings::get_setting_with_override()`. * GLOBAL_DEF/GLOBAL_GET updated to use this This change solves many problems: * General confusion about getting the actual or overriden setting. * Feature tags available after settings are loaded were being ignored, they are now considered. * Hacks required for the Project Settings editor to work. Fixes #64100. Fixes #64014. Fixes #61908.
2023-01-13GDScript: Fix infinite recursion in resolution of enum valuesGeorge Marques
2023-01-13Reset animation on playback stopTomasz Chabora
2023-01-13Merge pull request #71317 from bruvzg/dash_alignRémi Verschelde
Improve dashed line alignment and make it optional.
2023-01-13Merge pull request #71315 from smix8/i_see_doubleRémi Verschelde
Fix duplicate NavigationServer process
2023-01-13Merge pull request #71312 from timothyqiu/node-removedRémi Verschelde
Fix crash when clicking Edit Region after reopening the scene
2023-01-13Merge pull request #71295 from bruvzg/macos_bg_colorRémi Verschelde
[macOS] Avoid color flash on window resizing
2023-01-13Fix duplicate NavigationServer processsmix8
NavigationServer process was called twice each frame Also adds 3 missing MONITOR_TYPE entries.
2023-01-13Improve dashed line alignment and make it optional.bruvzg
2023-01-13[macOS] Avoid color flash on window creation and resizing.bruvzg
2023-01-13Fix crash when clicking Edit Region after reopening the sceneHaoyu Qiu
2023-01-13Merge pull request #71303 from clayjohn/ref-probe-crashRémi Verschelde
Only setup depth framebuffer properties when not rendering ReflectionProbes
2023-01-12Only setup depth framebuffer properties when not rendering ReflectionProbesclayjohn
2023-01-13Merge pull request #71152 from nongvantinh/fix-70981Rémi Verschelde
Fix node name in the SceneTreeEditor allows a node to have no name
2023-01-13Merge pull request #71033 from scurest/obj-vertex-colorRémi Verschelde
Add vertex color support to OBJ importer
2023-01-13Merge pull request #71209 from bruvzg/ed_progress_reparentRémi Verschelde
Automatically reparent editor progress dialog to avoid error spam.
2023-01-13Merge pull request #71297 from aaronfranke/file-formatRémi Verschelde
Fix file formatting script dependencies and cleanup
2023-01-13Merge pull request #71294 from gelvinp/macos_notarization_teamidRémi Verschelde
Require Apple Team ID when using notarytool
2023-01-13Merge pull request #71290 from clayjohn/normal-map-2dRémi Verschelde
Remove normal_map from MeshInstance2D and MultiMeshInstance2D
2023-01-12Merge pull request #71289 from RandomShaper/avoid_color_flashClay John
Avoid color flash on window creation and resizing
2023-01-12Fix file formatting script dependencies and cleanupAaron Franke
2023-01-12Require Apple Team ID when using notarytoolPatrick Gelvin
Adds a requirement that the Team ID is specified when notarizing with the new notarytool. Fixes #70307
2023-01-12Merge pull request #70904 from huangjiaminhhh/masterRémi Verschelde
Fix for navmesh baking when parsing StaticBody colliders
2023-01-12Remove normal_map from MeshInstance2D and MultiMeshInstance2Dclayjohn
2023-01-12Merge pull request #68450 from KoBeWi/bracket_escapistRémi Verschelde
Allow to escape closing brackets in CFG tags
2023-01-12Implement color flash avoidance for WindowsPedro J. Estébanez
2023-01-12Add framework for avoidance of color flash in new windowsPedro J. Estébanez
2023-01-12Merge pull request #71248 from rsjtdrjgfuzkfg/opengl-texture-formatRémi Verschelde
OpenGL: Support FORMAT_{ETC2,DXT5}_RA_AS_RG
2023-01-12Merge pull request #71247 from rsjtdrjgfuzkfg/etcpakRémi Verschelde
etcpak: Fix ETCPAK_TYPE_ETC2_RA_AS_RG
2023-01-12Merge pull request #70733 from vonagam/fix-assigning-untypedRémi Verschelde
GDScript: Fix some issues with assignments that involve untyped things
2023-01-12Merge pull request #71272 from MewPurPur/fix-frame-selectionRémi Verschelde
Fix the Frame Selection (Shift + F) functionality in the 2D editor
2023-01-12Merge pull request #70787 from peastman/cylinderRémi Verschelde
Analytic sphere-box, sphere-cylinder, and capsule-cylinder collisions
2023-01-12Merge pull request #70660 from Malcolmnixon/collision_sphere_capsuleRémi Verschelde
Fix sphere-capsule collision logic
2023-01-12Merge pull request #58517 from KoBeWi/size_mattersRémi Verschelde
Add expand modes to TextureRect
2023-01-12Fix style issue in ShapeCast3D after #68409Rémi Verschelde
Somehow that PR didn't run the CI checks.
2023-01-12Fix the Frame Selection functionalityVolTer
2023-01-12Merge pull request #71197 from adamscott/add-default-virtual-path-gdscriptRémi Verschelde
Add default virtual `gdscript://` path to `GDScript` instances
2023-01-12Merge pull request #71258 from TechnoPorg/doc-editor-export-platformRémi Verschelde
Document EditorExportPlatform
2023-01-12Merge pull request #70700 from vonagam/fix-abstract-extendsRémi Verschelde
GDScript: Fix extending abstract classes, forbid their construction
2023-01-12Merge pull request #68409 from Jasuse/shapecast3d_dbg_shape_fixRémi Verschelde
Fix debug shape of `ShapeCast3D` not updating on `Shape` change
2023-01-12Add expand modes to TextureRectkobewi
2023-01-12GDScript: Fix extending abstract classes, forbid their constructionDmitrii Maganov
2023-01-12Add default virtual `gdscript://` path to `GDScript` instancesAdam Scott