Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-12-20 | Merge pull request #70304 from MarcusElg/audioimportnaming | Rémi Verschelde | |
Fix inconsistent audio import menu naming | |||
2022-12-20 | Merge pull request #61239 from Calinou/tubetrailmesh-add-cap-properties | Rémi Verschelde | |
Add properties to disable top/bottom cap generation in TubeTrailMesh | |||
2022-12-20 | Merge pull request #70303 from Calinou/doc-font-outlines-msdf | Rémi Verschelde | |
Document MDSF font outlines may require `msdf_pixel_range` adjustments | |||
2022-12-20 | Merge pull request #70244 from DarkKilauea/nav-fix-abbrev-compat | Rémi Verschelde | |
[4.x] Fix typo and ensure backwards compatibility for changed property names | |||
2022-12-20 | Merge pull request #70328 from aaronfranke/canvas-z-index | Rémi Verschelde | |
Fix CanvasItem Z-index referring to Node2D | |||
2022-12-20 | Merge pull request #70312 from MarcusElg/rigidbodyworldboundarywarning | Rémi Verschelde | |
Show warning when having a WorldBoundaryShape3D as a child of a RigidBody3D | |||
2022-12-20 | Merge pull request #70170 from TokageItLab/fix-anim-keying-crash | Rémi Verschelde | |
Make keys deselected when keying property for animation to avoid crash | |||
2022-12-20 | Merge pull request #70313 from TokageItLab/fix-nblend | Rémi Verschelde | |
Fixed a bug where negative Blend values were being discarded | |||
2022-12-20 | Fix typo and ensure backwards compatibility for changed property names | Josh Jones | |
Changes to the name of the `navmesh` and `navpoly` properties on `NavigationRegion` caused navigation data to be lost on load. This PR creates uses `_set`/`_get` to handle compatibility with the older names on load, preserving the data. Also fixes a typo on `get_vertices_per_polygon` in `NavigationMesh`, and renames the property to remove the `polygon_` prefix which doesn't match the setter/getter. Co-authored-by: Rémi Verschelde <rverschelde@gmail.com> | |||
2022-12-19 | Fix CanvasItem Z-index referring to Node2D | Aaron Franke | |
2022-12-20 | Fixed a bug where negative Blend values were being discarded | Silc Renew | |
2022-12-19 | Show warning when having a worldboundaryshape as a child of a rigidbody | Marcus Elg | |
2022-12-19 | Merge pull request #69720 from Chaosus/inst_to_dict_note | Yuri Rubinsky | |
Fix undefined | |||
2022-12-19 | Fix inconsistent audio import menu naming | Marcus Elg | |
2022-12-19 | Add properties to disable top/bottom cap generation in TubeTrailMesh | Hugo Locurcio | |
This can be used to improve generation and rendering performance, or for certain special effects such as particle trails. | |||
2022-12-19 | Document MDSF font outlines may require `msdf_pixel_range` adjustments | Hugo Locurcio | |
2022-12-19 | Merge pull request #70291 from BastiaanOlij/small_action_map_fixes | Rémi Verschelde | |
Fix missing undo/redo object and issue with removing actions | |||
2022-12-19 | Add a note for `inst_to_dict` to prevent using it on built-in instances | Yuri Rubinsky | |
2022-12-19 | Merge pull request #70100 from Chaosus/fix_missing_editor_plugin_gdclasses | Rémi Verschelde | |
Fix missing GDCLASS headers in the editor preview plugins | |||
2022-12-19 | Merge pull request #70300 from RandomShaper/depth_format | Rémi Verschelde | |
Ensure depth buffer format picked actually supports full intended usage | |||
2022-12-19 | Merge pull request #70297 from Paulb23/fix-autocomplete-brace-completion | Rémi Verschelde | |
Fix autocomplete with autobrace completion not adding closing pair | |||
2022-12-19 | Merge pull request #70263 from reduz/restore-rotation_degrees | Rémi Verschelde | |
Restore 'rotation_degrees' properties. | |||
2022-12-19 | Merge pull request #70238 from kleonc/tile-set-simplify-isometric-tile-polygon | Rémi Verschelde | |
`TileSet` Simplify isometric tile shape polygon to 4 vertices | |||
2022-12-19 | Merge pull request #70219 from bruvzg/msdf_outline_scaling | Rémi Verschelde | |
Scale MSDF font outline with the font size and MSDF source size to match dynamic font behavior. | |||
2022-12-19 | Merge pull request #70264 from KoBeWi/layedulate | Rémi Verschelde | |
Use layer's modulate for tile previews | |||
2022-12-19 | Merge pull request #70285 from ↵ | Rémi Verschelde | |
MuffinManKen/textserver-format_number-default-docs Update documentation for TextServer.format_number() when language parameter is omitted | |||
2022-12-19 | Merge pull request #70236 from quentinguidee/refactor/delete-nullptr | Rémi Verschelde | |
AudioServer: Remove redundant nullptr check before `delete` | |||
2022-12-19 | Merge pull request #59682 from Sauermann/fix-following-viewport-transform | Rémi Verschelde | |
Include the follow-viewport-transform into CanvasLayer transform calculations | |||
2022-12-19 | Merge pull request #65990 from ↵ | Rémi Verschelde | |
touilleMan/gdextension-expose-builtins-members-real-types Expose in builtins' members internal type & size (on top of offset) in extension_api.json | |||
2022-12-19 | Ensure depth buffer format picked actually supports full intended usage | Pedro J. Estébanez | |
2022-12-19 | Fix autocomplete with autobrace completion not adding closing pair | Paulb23 | |
2022-12-19 | TileSet Simplify tile shape polygons | kleonc | |
2022-12-19 | Restore 'rotation_degrees' properties. | Juan Linietsky | |
By popular demand, restoring the helper properties to rotate objects in degrees. Affected are local and global rotations for: * Node2D * Node3D * Control | |||
2022-12-19 | Fix missing undo/redo object and issue with removing actions | Bastiaan Olij | |
2022-12-18 | Update documentation for TextServer.format_number() when language parameter ↵ | Ken Paulson | |
is omitted. | |||
2022-12-19 | Merge pull request #70275 from rune-scape/autoload-subscript-regression | Rémi Verschelde | |
Fix autoload subscript regression | |||
2022-12-18 | Fix autoload subscript regression | rune-scape | |
2022-12-18 | Include the following-viewport-transform into CanvasLayer transforms | Markus Sauermann | |
The following-viewport-transform was missing from several calculations | |||
2022-12-18 | Merge pull request #70250 from Chaosus/fix_audio_stream_editor | Yuri Rubinsky | |
2022-12-18 | Use layer's modulate for tile previews | kobewi | |
2022-12-18 | Merge pull request #59810 from reduz/fbx-import-dialog | Rémi Verschelde | |
Add a dialog for customizing FBX import | |||
2022-12-18 | Merge pull request #70237 from ↵ | Rémi Verschelde | |
quentinguidee/refactor/fix-comma-instead-of-semicolon Fix use of comma instead of semicolon | |||
2022-12-18 | Prevent showing AudioStream preview for non-WAV types | Yuri Rubinsky | |
2022-12-17 | Fix use of comma instead of semicolon | Quentin Guidée | |
Signed-off-by: Quentin Guidée <quentin.guidee@gmail.com> | |||
2022-12-17 | Remove redundant nullptr check before delete | Quentin Guidée | |
2022-12-18 | Add a dialog for customizing FBX import | reduz | |
* If FBX files are found, a dialog will pop up asking to configure FBX2glTF. * Dialog can also be accessed by going Editor -> Configure FBX Import. * The dialog also shows a link to click to download the converter, which should contain instructions. | |||
2022-12-18 | Merge pull request #70230 from DarkKilauea/nav-experimental | Rémi Verschelde | |
[4.x] Mark navigation classes and nodes as experimental | |||
2022-12-18 | Merge pull request #70229 from adamscott/fix-class-lookup | Rémi Verschelde | |
Fix outer class lookup | |||
2022-12-18 | Merge pull request #70227 from kleonc/atlas-texture-flipping-fix | Rémi Verschelde | |
`AtlasTexture` Fix calculating rects when flipping | |||
2022-12-18 | Merge pull request #70223 from KoBeWi/condition_of_arguable_usefulness | Rémi Verschelde | |
Remove unnecessary condition |