summaryrefslogtreecommitdiff
path: root/doc/classes
AgeCommit message (Collapse)Author
2023-02-10Add how to retrieve RigidBody2D and RigidBody3D autocomputed inertia[Error_27]
2023-02-04Merge pull request #71786 from raulsntos/dotnet/arrayRémi Verschelde
Sync C# Array with Core
2023-02-03Fix incorrect description for `Signal::get_connections`Yuri Sizov
2023-02-03Fix `RichTextLabel` context menu not customizableDanil Alexeev
2023-02-03Merge pull request #72643 from clayjohn/CL-blend-modeRémi Verschelde
Expose RenderingServer.canvas_light_blend_mode
2023-02-03Merge pull request #72604 from rbessems/rbessems/env_blend_modeRémi Verschelde
Add XR Environment Blend Mode Support
2023-02-02Expose RenderingServer.canvas_light_blend_modeclayjohn
This appears to have been missed in the refactor
2023-02-02Merge pull request #72601 from ↵Rémi Verschelde
Calinou/primitivemesh-uv2-padding-add-property-hint Add a property hint for PrimitiveMesh's `uv2_padding`
2023-02-02Add XR Environment Blend Mode SupportRon Bessems
2023-02-02Merge pull request #72600 from Calinou/string-match-globRémi Verschelde
Mention `String.match()` is also called "glob"/"globbing"
2023-02-02Add a property hint for PrimitiveMesh's `uv2_padding`Hugo Locurcio
Negative values are not valid and will always cause lightmap bleeding to occur. This also improves the documentation for the `uv2_padding` property in the class reference.
2023-02-02Mention `String.match()` is also called "glob"/"globbing"Hugo Locurcio
This is mostly for Ctrl + F purposes, in case someone is looking how to perform globbing on a string.
2023-02-02Added missing words relating to TileSetAtlasSourceRahul Gandharva
2023-02-02Merge pull request #72562 from 0xafbf/patch-1Rémi Verschelde
Fix bad variable name in TileMap documentation
2023-02-01Fix bad variable name in TileMap documentationAndrés Botero
2023-02-01Remove meaningless `rename_parameter` in AnimationTreeSilc Renew
2023-02-01More codespell fixes, do more changes from previous ignore listRémi Verschelde
2023-02-01Revert "GDScript: Add warnings that are set to error by default"Rémi Verschelde
This reverts commit a166833bfa23a21a7bff196a85a20b014e7c1396. This caused multiple regressions. Needs to be redone with more testing before merge. Fixes #72501.
2023-02-01Fix various typos with codespellRémi Verschelde
Finally do the childs -> children rename too.
2023-02-01Merge pull request #72487 from vnen/gdscript-warning-default-errorRémi Verschelde
GDScript: Add warnings that are set to error by default
2023-02-01Merge pull request #71936 from akien-mga/remove-some-unused-signalsRémi Verschelde
Remove some unused signals
2023-02-01Merge pull request #71479 from raulsntos/virtual-return-typeRémi Verschelde
Use enum instead of int in virtual methods return type
2023-02-01Merge pull request #71991 from clayjohn/RS-docsRémi Verschelde
Fill out more sections in RenderingServer and RenderingDevice
2023-02-01Merge pull request #72459 from KoBeWi/debindsRémi Verschelde
Add unbinds to `scn`
2023-02-01Merge pull request #72075 from Maran23/extents-to-sizeRémi Verschelde
Replace Extents with Size in VoxelGI, ReflectionProbe, FogVolume, Decal and GPUParticles*3D
2023-02-01Merge pull request #66076 from ↵Rémi Verschelde
Sauermann/fix-double-physics-input-events-for-layers Fix physics events being interpreted twice for nodes in canvas layer
2023-02-01Merge pull request #66906 from Sauermann/fix-prohibit-inconsistent-size-stateRémi Verschelde
Prohibit inconsistent size state for SubViewport
2023-02-01Merge pull request #72462 from raulsntos/docs/dotnet-renamesRémi Verschelde
Fix C# examples in documentation for 4.0
2023-02-01Merge pull request #72371 from dalexeev/remove-gds-str-duplicateRémi Verschelde
Remove `@GDScript.str` (duplicate of `@GlobalScope.str`)
2023-02-01Merge pull request #72450 from TokageItLab/optional-restartRémi Verschelde
Make restart in NodeStateMachine / NodeTransition optional
2023-02-01Merge pull request #71543 from smix8/navigation_agent_debug_4.xRémi Verschelde
Add NavigationAgent Path Debug Visualization
2023-02-01GDScript: Add warnings that are set to error by defaultGeorge Marques
- Adds a list of default levels for all warning so they can be set individually. - Add warnings set by default to error for: - Using `get_node()` without `@onready`. - Using `@onready` together with `@export`. - Inferring a static type with a Variant value. - Overriding a native engine method. - Adjust how annotations to ignore warnings are treated so they also apply to method parameters. - Clean up a bit how ignored warnings are set. There were two sets but only one was actually being used. - Set all warnings to the `WARN` level for tests, so they they can be properly tested. - Fix enum types in native methods signatures being set to `int`. - Fix native enums being treated as Dictionary by mistake. - Make name of native enum types use the class they are defined in, not the direct super class of the script. This ensures they are always equal even when coming from different sources. - Fix error for signature mismatch that was only showing the first default argument as having a default. Now it shows for all.
2023-02-01Add unbinds to scnkobewi
2023-01-31Use `PropertyUsageFlags` enum in parse_propertyRaul Santos
2023-01-31Fix physics events being interpreted twice when in canvas layerMarkus Sauermann
2023-01-31Prohibit inconsistent size state for SubViewportMarkus Sauermann
Prohibit size changes of SubViewports with parent SubViewportContainers that have stretch mode enabled.
2023-01-31Replace Extents with Size in VoxelGI, ReflectionProbe, FogVolume, Decal and ↵Marius Hanl
GPUParticles*3D - Extents are replaced by Size (Size is Extents * 2) - The UI text displays 'Size' - Snapping is adjusted to work with Size - _set and _get handle extents for compatibility Co-authored-by: ator-dev <dominic.codedeveloper@gmail.com>
2023-02-01Make restart in NodeStateMachine / NodeTransition optionalSilc Renew
2023-01-31Use enum instead of int in virtual methods return typeRaul Santos
2023-01-31Fix C# examples in documentationRaul Santos
- Fix documentation after C# renames. - Add missing `partial` in C# class declarations. - Change `delta` parameter type to `double` in C#. - Ensure parameters match base declaration. - Use `$` string interpolation in C#. - Fix invalid or outdated C# code. - Changed some examples to follow our style guide more closely.
2023-01-31Merge pull request #69120 from souplamp/audio-function-renameRémi Verschelde
Rename references to audio device, capture_device to output_device, input_device respectively
2023-01-31Merge pull request #65698 from KoBeWi/cameramanRémi Verschelde
Rework how current Camera2D is determined
2023-01-31Remove some unused signalsRémi Verschelde
Part of #37604.
2023-01-31Add NavigationAgent Path Debug Visualizationsmix8
Adds path debug visuals for NavigationAgent2D, NavigationAgent3D and NavigationServer.
2023-01-31Audio rename (device, capture_device) -> (output_device, input_device)souplamp
Change instances of audio properties 'device' to 'output_device', and instances of audio properties 'capture_device' to 'input_device', as well as their subsequent getter & setter functions. Update the docs to reflect these changes, as well as the 3-to-4 converter for GDScript and CSharp to make proper conversions (only exception is 'device' since that name is too vague and might replace non-AudioServer related instances, such as user comments and variables). This does not change internal references to references like 'Render Client' and 'Capture Client' in WASAPI; such is outside the scope of this commit. This also does not change ALSA's references, considering that it uses 'device' to mean input and output interchangeably. Other references are changed, however where applicable, to be consistent with the new AudioServer methods and property names.
2023-01-31Merge pull request #72396 from TokageItLab/bs1dconsistRémi Verschelde
Consistent with NodeBlendSpace1D option NodeBlendSpace2D
2023-01-31Merge pull request #72206 from vnen/gdscript-allow-void-return-shorthandRémi Verschelde
GDScript: Allow void functions to return calls to other void functions
2023-01-31Merge pull request #57520 from jordigcs/gd-rename-mapRémi Verschelde
Add hint for identifiers renamed from 3.x to 4.0
2023-01-31GDScript: Allow void functions to return calls to other void functionsGeorge Marques
2023-01-31Merge pull request #62737 from kidrigger/gdext_videodecoderRémi Verschelde
Updates VideoDecoder plugin API to GDExt.