Skip to content

Commit 4b616e1

Browse files
authored
Merge pull request #10364 from godotengine/4.3
Update stable
2 parents 9add6a4 + 47831b0 commit 4b616e1

31 files changed

+424
-58
lines changed

about/list_of_features.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -486,7 +486,7 @@ Scripting
486486
- Use any build system and language features you wish.
487487

488488
- Actively developed GDExtension bindings for `D <https://github.com/godot-dlang/godot-dlang>`__,
489-
`Haxe <https://hxgodot.github.io/>`__, `Swift <https://github.com/migueldeicaza/SwiftGodot>`__, and `Rust <https://github.com/godot-rust/gdextension>`__
489+
`Swift <https://github.com/migueldeicaza/SwiftGodot>`__, and `Rust <https://github.com/godot-rust/gdextension>`__
490490
bindings provided by the community. (Some of these bindings may be experimental and not production-ready).
491491

492492
Audio

conf.py

+5
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,11 @@
170170
"logo_only": True,
171171
# Collapse navigation (False makes it tree-like)
172172
"collapse_navigation": False,
173+
# Remove version and language picker beneath the title
174+
"version_selector": False,
175+
"language_selector": False,
176+
# Set Flyout menu to attached
177+
"flyout_display": "attached",
173178
}
174179

175180
html_title = supported_languages[language] % ( "(" + version + ")" )

tutorials/2d/2d_antialiasing.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,8 @@ affect** the following kinds of aliasing in any way:
7777
- Aliasing in font rendering.
7878

7979
MSAA can be enabled in the Project Settings by changing the value of the
80-
**Rendering > Anti Aliasing > Quality > MSAA 2D** setting. It's important to change
81-
the value of the **MSAA 2D** setting and not **MSAA 3D**, as these are entirely
80+
:ref:`Rendering > Anti Aliasing > Quality > MSAA 2D<class_ProjectSettings_property_rendering/anti_aliasing/quality/msaa_2d>`
81+
setting. It's important to change the value of the **MSAA 2D** setting and not **MSAA 3D**, as these are entirely
8282
separate settings.
8383

8484
Comparison between no antialiasing (left) and various MSAA levels (right). The

tutorials/2d/2d_parallax.rst

+5-2
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,11 @@ do?
7878
Make the viewport smaller
7979
^^^^^^^^^^^^^^^^^^^^^^^^^
8080

81-
The simplest answer is to make the viewport the same size or smaller than your textures. Click on
82-
``Project -> Project Settings -> Window`` and change the viewport height and width to match your background.
81+
The simplest answer is to make the viewport the same size or smaller than your textures.
82+
In **Project Settings > Display > Window**, change the
83+
:ref:`Viewport Width<class_ProjectSettings_property_display/window/size/viewport_width>`
84+
and :ref:`Viewport Height<class_ProjectSettings_property_display/window/size/viewport_height>`
85+
settings to match your background.
8386

8487
.. image:: img/2d_parallax_size_viewport.webp
8588

tutorials/2d/custom_drawing_in_2d.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -254,9 +254,9 @@ You will have to code a function to perform this and draw it yourself.
254254

255255
The following instructions use a fixed set of coordinates that could be too small
256256
for high resolution screens (larger than 1080p). If that is your case, and the
257-
drawing is too small consider increasing your window scale in
258-
``Menu > Project > Project settings > display/window/stretch/scale`` to adjust
259-
the project to a higher resolution (a 2 or 4 scale tends to work well).
257+
drawing is too small consider increasing your window scale in the project setting
258+
:ref:`Display > Window > Stretch > Scale<class_ProjectSettings_property_display/window/stretch/scale>`
259+
to adjust the project to a higher resolution (a 2 or 4 scale tends to work well).
260260

261261
Drawing a custom polygon shape
262262
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1.8 KB
Binary file not shown.
26.5 KB
Binary file not shown.
Binary file not shown.
73.3 KB
Binary file not shown.
10 KB
Binary file not shown.
6.21 KB
Binary file not shown.
8.09 KB
Binary file not shown.

tutorials/2d/img/2d_toolbar.webp

3.46 KB
Binary file not shown.
34.6 KB
Binary file not shown.

tutorials/2d/index.rst

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
:maxdepth: 1
88
:name: toc-learn-features-2d
99

10+
introduction_to_2d
1011
canvas_layers
1112
2d_transforms
1213

tutorials/2d/introduction_to_2d.rst

+316
Large diffs are not rendered by default.

tutorials/2d/using_tilesets.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ sounds), particle effects, and more.
168168
Scene tiles come with a greater performance overhead compared to atlases, as
169169
every scene is instanced individually for every placed tile.
170170

171-
It's recommended to use only scene tiles when necessary. To draw sprites in a
171+
It's recommended to only use scene tiles when necessary. To draw sprites in a
172172
tile without any kind of advanced manipulation,
173173
:ref:`use atlases instead <doc_creating_tilesets_using_tilesheet>`.
174174

@@ -257,7 +257,7 @@ TileSet resource, choose **Merge (Keep Original Atlases)** instead.
257257
Adding collision, navigation and occlusion to the TileSet
258258
---------------------------------------------------------
259259

260-
We've now successfully created a basic TileSet. We could start using in the
260+
We've now successfully created a basic TileSet. We could start using it in the
261261
TileMapLayer node now, but it currently lacks any form of collision detection.
262262
This means the player and other objects could walk straight through the floor or
263263
walls.
@@ -436,7 +436,7 @@ corners or edges of platforms, floors, etc. While these can be placed manually,
436436
this quickly becomes tedious. Handling this situation with procedurally
437437
generated levels can also be difficult and require a lot of code.
438438

439-
Godot offers *terrains* to perform this kind of tile connections automatically.
439+
Godot offers *terrains* to perform this kind of tile connection automatically.
440440
This allows you to have the "correct" tile variants automatically used.
441441

442442
Terrains are grouped into terrain sets. Each terrain set is assigned a mode from

tutorials/3d/3d_antialiasing.rst

+13-10
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ moderate performance cost, but it's effective at reducing aliasing on
6565
transparent materials without introducing any blurriness.
6666

6767
MSAA can be enabled in the Project Settings by changing the value of the
68-
**Rendering > Anti Aliasing > Quality > MSAA 3D** setting. It's important to change
69-
the value of the **MSAA 3D** setting and not **MSAA 2D**, as these are entirely
68+
:ref:`Rendering > Anti Aliasing > Quality > MSAA 3D<class_ProjectSettings_property_rendering/anti_aliasing/quality/msaa_3d>`
69+
setting. It's important to change the value of the **MSAA 3D** setting and not **MSAA 2D**, as these are entirely
7070
separate settings.
7171

7272
Comparison between no antialiasing (left) and various MSAA levels (right).
@@ -103,8 +103,9 @@ downside of TAA is that it can exhibit *ghosting* artifacts behind moving
103103
objects. Rendering at a higher framerate will allow TAA to converge faster,
104104
therefore making those ghosting artifacts less visible.
105105

106-
Temporal antialiasing can be enabled in the Project Settings by changing the
107-
value of the **Rendering > Anti Aliasing > Quality > Use TAA** setting.
106+
Temporal antialiasing can be enabled in the Project Settings by changing the value of the
107+
:ref:`Rendering > Anti Aliasing > Quality > TAA<class_ProjectSettings_property_rendering/anti_aliasing/quality/use_taa>`
108+
setting.
108109

109110
Comparison between no antialiasing (left) and TAA (right):
110111

@@ -164,9 +165,9 @@ as an in-game option may still be worthwhile for players with low-end GPUs.
164165
FXAA introduces a moderate amount of blur when enabled (more than TAA when
165166
still, but less than TAA when the camera is moving).
166167

167-
FXAA can be enabled in the Project Settings by changing the
168-
value of the **Rendering > Anti Aliasing > Quality > Screen Space AA** setting to
169-
**FXAA**.
168+
FXAA can be enabled in the Project Settings by changing the value of the
169+
:ref:`Rendering > Anti Aliasing > Quality > Screen Space AA<class_ProjectSettings_property_rendering/anti_aliasing/quality/screen_space_aa>`
170+
setting to ``FXAA``.
170171

171172
Comparison between no antialiasing (left) and FXAA (right):
172173

@@ -187,9 +188,11 @@ The downside of SSAA is its *extremely* high cost. This cost generally makes
187188
SSAA difficult to use for game purposes, but you may still find supersampling
188189
useful for :ref:`offline rendering <doc_creating_movies>`.
189190

190-
Supersample antialiasing is performed by increasing the **Rendering > Scaling 3D
191-
> Scale** advanced project setting above ``1.0`` while ensuring
192-
**Rendering > Scaling 3D > Mode** is set to **Bilinear** (the default).
191+
Supersample antialiasing is performed by increasing the
192+
:ref:`Rendering > Scaling 3D > Scale<class_ProjectSettings_property_rendering/scaling_3d/scale>`
193+
advanced project setting above ``1.0`` while ensuring
194+
:ref:`Rendering > Scaling 3D > Mode<class_ProjectSettings_property_rendering/scaling_3d/mode>`
195+
is set to ``Bilinear`` (the default).
193196
Since the scale factor is defined per-axis, a scale factor of ``1.5`` will result
194197
in 2.25× SSAA while a scale factor of ``2.0`` will result in 4× SSAA. Since Godot
195198
uses the hardware's own bilinear filtering to perform the downsampling, the result

tutorials/3d/3d_rendering_limitations.rst

+3-2
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,9 @@ rendering, where banding may be visible when using smooth gradient textures.
4646

4747
There are two main ways to alleviate banding:
4848

49-
- If using the Forward+ or Forward Mobile rendering methods, enable **Use
50-
Debanding** in the advanced Project Settings. This applies a fullscreen debanding
49+
- If using the Forward+ or Forward Mobile rendering methods, enable
50+
:ref:`Use Debanding<class_ProjectSettings_property_rendering/anti_aliasing/quality/use_debanding>`
51+
in **Project Settings > Rendering > Anti Aliasing**. This applies a fullscreen debanding
5152
shader as a post-processing effect and is very cheap.
5253
- Alternatively, bake some noise into your textures. This is mainly effective in
5354
2D, e.g. for vignetting effects. In 3D, you can also use a `custom debanding

tutorials/3d/environment_and_post_processing.rst

+6-5
Original file line numberDiff line numberDiff line change
@@ -653,7 +653,8 @@ There are 2 ways to use glow in 2D:
653653
rendering output.
654654

655655
- To enable HDR in 2D, open the Project Settings, enable
656-
**Rendering > Viewport > HDR 2D** then restart the editor.
656+
:ref:`Rendering > Viewport > HDR 2D<class_ProjectSettings_property_rendering/viewport/hdr_2d>`
657+
then restart the editor.
657658

658659
- If you want to maximize performance, you can leave HDR disabled for 2D
659660
rendering. However, you will have less control on which objects glow.
@@ -676,10 +677,10 @@ There are 2 ways to use glow in 2D:
676677
.. warning::
677678

678679
The 2D renderer renders in linear color space if the
679-
**Rendering > Viewport > HDR 2D** project setting is enabled, so
680-
``source_color`` must also be used for uniform samplers that are
681-
used as color input in ``canvas_item`` shaders. If this is not done,
682-
the texture will appear washed out.
680+
:ref:`Rendering > Viewport > HDR 2D<class_ProjectSettings_property_rendering/viewport/hdr_2d>`
681+
project setting is enabled, so the ``source_color`` hint must also be used
682+
for uniform samplers that are used as color input in ``canvas_item`` shaders.
683+
If this is not done, the texture will appear washed out.
683684

684685
If 2D HDR is disabled, ``source_color`` will keep working correctly in
685686
``canvas_item`` shaders, so it's recommend to use it when relevant either

tutorials/3d/global_illumination/reflection_probes.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -187,9 +187,9 @@ reflection probe rendering. As many reflection probes as desired can be added (a
187187
performance allows). However, there's still a default limit of 512 *clustered
188188
elements* that can be present in the current camera view. A clustered element is
189189
an omni light, a spot light, a :ref:`decal <doc_using_decals>` or a
190-
:ref:`reflection probe <doc_reflection_probes>`. This limit can be increased by
191-
adjusting the **Rendering > Limits > Cluster Builder > Max Clustered Elements**
192-
advanced project setting.
190+
:ref:`reflection probe <doc_reflection_probes>`. This limit can be increased by adjusting
191+
:ref:`Max Clustered Elements<class_ProjectSettings_property_rendering/limits/cluster_builder/max_clustered_elements>`
192+
in **Project Settings > Rendering > Limits > Cluster Builder**.
193193

194194
When using the Forward Mobile backend, only 8 reflection probes can be applied on each
195195
individual Mesh *resource*. If there are more reflection probes affecting a single mesh,

tutorials/3d/lights_and_shadows.rst

+9-7
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,9 @@ real-time lighting. As many lights as desired can be added (as long as
6161
performance allows). However, there's still a default limit of 512 *clustered
6262
elements* that can be present in the current camera view. A clustered element is
6363
an omni light, a spot light, a :ref:`decal <doc_using_decals>` or a
64-
:ref:`reflection probe <doc_reflection_probes>`. This limit can be increased by
65-
adjusting the **Rendering > Limits > Cluster Builder > Max Clustered Elements**
66-
advanced project setting.
64+
:ref:`reflection probe <doc_reflection_probes>`. This limit can be increased by adjusting
65+
:ref:`Max Clustered Elements<class_ProjectSettings_property_rendering/limits/cluster_builder/max_clustered_elements>`
66+
in **Project Settings > Rendering > Limits > Cluster Builder**.
6767

6868
When using the Forward Mobile renderer, there is a limitation of 8 OmniLights +
6969
8 SpotLights per mesh resource. There is also a limit of 256 OmniLights + 256
@@ -72,10 +72,12 @@ currently cannot be changed.
7272

7373
When using the Compatibility renderer, up to 8 OmniLights + 8 SpotLights can be
7474
rendered per mesh resource. This limit can be increased in the advanced Project
75-
Settings by adjusting **Rendering > Limits > OpenGL > Max Renderable Lights**
76-
and/or **Rendering > Limits > OpenGL > Max Lights Per Object** at the cost of
77-
performance and longer shader compilation times. The limit can also be decreased
78-
to reduce shader compilation times and improve performance slightly.
75+
Settings by adjusting
76+
:ref:`Max Renderable Elements<class_ProjectSettings_property_rendering/limits/opengl/max_renderable_elements>`
77+
and/or :ref:`Max Lights per Object<class_ProjectSettings_property_rendering/limits/opengl/max_lights_per_object>`
78+
in **Rendering > Limits > OpenGL**, at the cost of performance and longer shader
79+
compilation times. The limit can also be decreased to reduce shader compilation
80+
times and improve performance slightly.
7981

8082
With all rendering methods, up to 8 DirectionalLights can be visible at a time.
8183
However, each additional DirectionalLight with shadows enabled will reduce the

tutorials/3d/using_decals.rst

+6-5
Original file line numberDiff line numberDiff line change
@@ -234,8 +234,9 @@ away from the camera (and may have little to no impact on the final scene
234234
rendering). Using node groups, you can also prevent non-essential decorative
235235
decals from spawning based on user configuration.
236236

237-
The way decals are rendered also has an impact on performance. The **Rendering >
238-
Textures > Decals > Filter** advanced project setting lets you control how decal
237+
The way decals are rendered also has an impact on performance. The
238+
:ref:`Rendering > Textures > Decals > Filter<class_ProjectSettings_property_rendering/textures/decals/filter>`
239+
advanced project setting lets you control how decal
239240
textures should be filtered. **Nearest/Linear** does not use mipmaps. However,
240241
decals will look grainy at a distance. **Nearest/Linear Mipmaps** will look
241242
smoother at a distance, but decals will look blurry when viewed from oblique
@@ -262,9 +263,9 @@ decal rendering. As many decals as desired can be added (as long as
262263
performance allows). However, there's still a default limit of 512 *clustered
263264
elements* that can be present in the current camera view. A clustered element is
264265
an omni light, a spot light, a :ref:`decal <doc_using_decals>` or a
265-
:ref:`reflection probe <doc_reflection_probes>`. This limit can be increased by
266-
adjusting the **Rendering > Limits > Cluster Builder > Max Clustered Elements**
267-
advanced project setting.
266+
:ref:`reflection probe <doc_reflection_probes>`. This limit can be increased by adjusting
267+
:ref:`Max Clustered Elements<class_ProjectSettings_property_rendering/limits/cluster_builder/max_clustered_elements>`
268+
in **Project Settings > Rendering > Limits > Cluster Builder**.
268269

269270
When using the Forward Mobile backend, only 8 decals can be applied on each
270271
individual Mesh *resource*. If there are more decals affecting a single mesh,

tutorials/audio/recording_with_microphone.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ A simple demo is included in the official demo projects and will be used as
1212
support for this tutorial:
1313
`<https://github.com/godotengine/godot-demo-projects/tree/master/audio/mic_record>`_.
1414

15-
You will need to enable audio input in the project settings ``Project Settings -> Audio -> Driver -> Enable Input``, or you'll just get empty audio files.
15+
You will need to enable audio input in the :ref:`Audio > Driver > Enable Input<class_ProjectSettings_property_audio/driver/enable_input>` project setting, or you'll just get empty audio files.
1616

1717
The structure of the demo
1818
-------------------------

tutorials/performance/thread_safe_apis.rst

+3-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,9 @@ Rendering
5555
---------
5656

5757
Instancing nodes that render anything in 2D or 3D (such as Sprite) is *not* thread-safe by default.
58-
To make rendering thread-safe, set the **Rendering > Driver > Thread Model** project setting to **Multi-Threaded**.
58+
To make rendering thread-safe, set the
59+
:ref:`Rendering > Driver > Thread Model<class_ProjectSettings_property_rendering/driver/threads/thread_model>`
60+
project setting to **Multi-Threaded**.
5961

6062
Note that the Multi-Threaded thread model has several known bugs, so it may not be usable
6163
in all scenarios.

tutorials/physics/physics_introduction.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ These properties can be configured via code, or by editing them in the Inspector
132132

133133
Keeping track of what you're using each layer for can be difficult, so you
134134
may find it useful to assign names to the layers you're using. Names can
135-
be assigned in Project Settings -> Layer Names.
135+
be assigned in **Project Settings > Layer Names**.
136136

137137
.. image:: img/physics_layer_names.png
138138

@@ -235,7 +235,7 @@ You can modify a rigid body's behavior via properties such as "Mass",
235235
"Friction", or "Bounce", which can be set in the Inspector.
236236

237237
The body's behavior is also affected by the world's properties, as set in
238-
`Project Settings -> Physics`, or by entering an :ref:`Area2D <class_Area2D>`
238+
**Project Settings > Physics**, or by entering an :ref:`Area2D <class_Area2D>`
239239
that is overriding the global physics properties.
240240

241241
When a rigid body is at rest and hasn't moved for a while, it goes to sleep.

0 commit comments

Comments
 (0)