1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00
Commit Graph

11248 Commits

Author SHA1 Message Date
Micky
3613306bba Fix miscellaneous oddities around the class reference (part 5) 2025-06-06 15:21:25 +02:00
kobewi
13f642d959 Replace XML codeblock spaces with tabs 2025-06-06 14:35:38 +02:00
Rémi Verschelde
b6f04cbe10 Merge pull request #107130 from timothyqiu/pure-virtual
Doc: Add "required" qualifier to methods
2025-06-05 17:24:58 +02:00
Rémi Verschelde
37982d4a01 Merge pull request #107116 from beicause/expose-mesh-surface-update-index-buffer
Expose `RS.mesh_surface_update_index_region`
2025-06-05 17:24:54 +02:00
Haoyu Qiu
1ca5bc2d04 Doc: Add "required" qualifier to methods 2025-06-05 21:41:07 +08:00
LuoZhihao
63c124fa45 Expose RS.mesh_surface_update_index_region
And `mesh_surface_get_format_index_stride`
2025-06-05 19:35:59 +08:00
Pāvels Nadtočajevs
b6461a3bd5 Add WorkerThreadPool.get_caller_group_id 2025-06-05 14:23:26 +03:00
Rémi Verschelde
bb9d6d0d02 Merge pull request #107113 from mihe/macos-open-in-program
Add `OS::open_with_program` for opening files/directories with a specific program on macOS
2025-06-05 13:13:49 +02:00
Rémi Verschelde
8862d4c9b5 Merge pull request #107029 from mhilbrunner/expose-workerthreadpool-gettaskid
Expose `WorkerThreadPool.get_caller_task_id()`
2025-06-05 13:12:48 +02:00
Rémi Verschelde
c79ba6a59c Merge pull request #106862 from KerekesDavid/fix-scene-tree-get-frame-docs
Clarify `SceneTree.get_frame()` description
2025-06-05 13:12:25 +02:00
Rémi Verschelde
acc0e14d95 Merge pull request #106841 from TokageItLab/refactor-boneattachment
Refactor `BoneAttachment` property registration
2025-06-05 13:12:20 +02:00
Rémi Verschelde
68eb04a61a Merge pull request #106791 from tomsterBG/master|add-docs-1
Add description for `Skeleton3D.bone_list_changed`
2025-06-05 13:12:11 +02:00
Rémi Verschelde
590225f3d1 Merge pull request #106690 from NessaTeal/expose-camera2d-current-rotation
Expose Camera2D current rotation
2025-06-05 13:12:07 +02:00
Rémi Verschelde
42a89af552 Merge pull request #106327 from Calinou/doc-spinbox-apply
Improve SpinBox class documentation
2025-06-05 13:11:48 +02:00
Rémi Verschelde
8e0c258408 Merge pull request #106300 from bruvzg/rtl_ualp
[RTL] Add options to override underline color and default alpha.
2025-06-05 13:11:39 +02:00
Rémi Verschelde
f342601ce2 Merge pull request #106217 from DeeJayLSP/variable-weights-editor
Force weights on custom editor fonts when variable
2025-06-05 13:11:35 +02:00
Rémi Verschelde
31c3c8d04b Merge pull request #106159 from timothyqiu/enum-enum
[Docs] Remove redundant info on the enum types used
2025-06-05 13:11:30 +02:00
Rémi Verschelde
7aee071097 Merge pull request #106013 from akien-mga/move-MovieWriterMJPEG-to-jpg-module
Move MovieWriterMJPEG class to `jpg` module it depends on
2025-06-05 13:11:18 +02:00
Rémi Verschelde
b25f609eed Merge pull request #105994 from syntaxerror247/split_container
Add option for a touch-friendly drag handle in `SplitContainer`
2025-06-05 13:11:14 +02:00
Rémi Verschelde
8343ab45e6 Merge pull request #105888 from TokageItLab/optional-rotation-axis-spring
Add optional rotation axis & Fix initial pose with rotation axis in SpringBone
2025-06-05 13:11:01 +02:00
Rémi Verschelde
1f517a029d Merge pull request #105746 from mihe/jolt/area-vs-static
Remove Jolt Physics project setting "Areas Detect Static Bodies"
2025-06-05 13:10:57 +02:00
Rémi Verschelde
c27c87b852 Merge pull request #105245 from timothyqiu/canvas-layer-range
Relax the range hint for canvas layer properties
2025-06-05 13:10:50 +02:00
Rémi Verschelde
4df2e1b61a Merge pull request #104996 from KeyboardDanni/ruler_width_setting
Add ruler width editor setting to 2D editor
2025-06-05 13:10:44 +02:00
Rémi Verschelde
db170e8636 Merge pull request #104533 from leandro-benedet-garcia/doc-change
Add clarifications to PhysicsDirectSpaceState docs on how to get their instance
2025-06-05 13:10:40 +02:00
Rémi Verschelde
ebc04d7587 Merge pull request #103231 from aaronfranke/doc-free-memdelete
Document that `memdelete()` is the GDExtension C++ version of `free()`
2025-06-05 13:10:32 +02:00
Rémi Verschelde
ea76c48bd0 Merge pull request #102313 from daniel080400/generate_scene_thumbnails
Rework scene preview thumbnails
2025-06-05 13:10:28 +02:00
Rémi Verschelde
8131883b16 Merge pull request #99504 from LunaCapra/audio-metadata
Add metadata tags to WAV and OGG audio streams
2025-06-05 13:10:12 +02:00
Leandro (Cerberus1746) Benedet Garcia
f3ef56dafa Add clarifications to PhysicsDirectSpaceState docs on how to get their instance 2025-06-05 11:46:42 +02:00
Pāvels Nadtočajevs
332352d37f [RTL] Add options to override underline color and default alpha. 2025-06-05 12:39:25 +03:00
Rémi Verschelde
78eb0b68d3 Move MovieWriterMJPEG class to jpg module it depends on
Fixes #90932.
2025-06-05 10:29:22 +02:00
Mikael Hermansson
f610c81943 Add OS::open_with_program for opening files/directories with a specific program on macOS
Co-authored-by: bruvzg <7645683+bruvzg@users.noreply.github.com>
2025-06-05 10:12:01 +02:00
Silc Lizard (Tokage) Renew
4f1d1fefa3 Refactore BoneAttachment property registration 2025-06-05 09:42:31 +09:00
Silc Lizard (Tokage) Renew
9cef0d5ca5 Add optional rot axis / Fix initial pose with rot axis in SpringBone 2025-06-05 09:38:06 +09:00
Thaddeus Crews
bf6bec9ac5 Merge pull request #106911 from Yobbolita/patch-1
Improve the `PhysicsShapeQueryParameters3D`'s description
2025-06-04 10:34:29 -05:00
Aaron Franke
c58483ad0b Document that memdelete() is the GDExtension C++ version of free() 2025-06-03 23:37:41 -07:00
Haoyu Qiu
1e82bafa3a Remove redundant info on the enum types used 2025-06-04 08:21:47 +08:00
Nessa Teal
cf59d74b15 Expose Camera2D current rotation 2025-06-04 00:22:18 +03:00
Thaddeus Crews
1b37dacc18 Merge pull request #106622 from beicause/rm-unnecessary-validate-property-call
Remove unnecessary calling `_validate_property()` in the core from all extended classes
2025-06-03 15:30:28 -05:00
Thaddeus Crews
bdc8ef3325 Merge pull request #81266 from bruvzg/mac_shell_env
[macOS] Add support for loading shell environment from UI apps.
2025-06-03 15:30:27 -05:00
Thaddeus Crews
af32c5234b Merge pull request #101219 from L2750558108/add-video-speed-virtual
Add speed scale feature for VideoStreamPlayer node
2025-06-03 15:30:26 -05:00
Thaddeus Crews
3fbebdf4da Merge pull request #107087 from shiena/fix/update-camera-server-document
Update CameraServer document for Android
2025-06-03 15:30:25 -05:00
Thaddeus Crews
20928f66e9 Merge pull request #107082 from KoBeWi/this_setting_does_not_exist
Clarify existence of custom project settings
2025-06-03 15:30:21 -05:00
Thaddeus Crews
1b2adba320 Merge pull request #107081 from timothyqiu/debug-draw-copy-pasting
Fix copy-paste error in Viewport classref
2025-06-03 15:30:21 -05:00
Thaddeus Crews
757cf4c8d5 Merge pull request #107069 from Calinou/doc-astar2d-link-tutorial
Link demo project in AStar2D and AStarGrid2D documentation
2025-06-03 15:30:19 -05:00
Thaddeus Crews
e16e6a48f9 Merge pull request #107068 from Calinou/doc-heightmapshape3d-holes
Fix incorrect note about holes in HeightMapShape3D
2025-06-03 15:30:18 -05:00
Thaddeus Crews
003e9db27f Merge pull request #107064 from sakubou/sprite-offset-note
Clarify `offset.y` behavior for Sprite2D vs Sprite3D
2025-06-03 15:30:17 -05:00
Thaddeus Crews
51b17759a2 Merge pull request #103719 from YeldhamDev/build_detection_improvements
Make build profile project detection also set build options
2025-06-03 15:30:14 -05:00
Thaddeus Crews
ba5e43aa54 Merge pull request #106659 from bruvzg/ac_kit_16
[AccessKit] Update API to 0.16.0.
2025-06-03 15:30:13 -05:00
Hugo Locurcio
fb9a5699a1 Fix incorrect note about holes in HeightMapShape3D 2025-06-03 19:10:07 +02:00
kobewi
b0110788ba Clarify existence of custom project settings 2025-06-03 18:49:04 +02:00