Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove references to 3.x minor versions #10122

Merged
merged 1 commit into from
Oct 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions tutorials/animation/2d_skeletons.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@ and most 3D modeling applications support it. For 2D, as this function is not
used as often, it's difficult to find mainstream software aimed for this.

One option is to create animations in third-party software such as Spine or
Dragonbones. From Godot 3.1 onwards, though, this functionality is supported
built-in.
Dragonbones. This functionality is also supported built-in.

Why would you want to do skeletal animations directly in Godot? The answer is
that there are many advantages to it:
Expand Down
3 changes: 0 additions & 3 deletions tutorials/animation/animation_tree.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,6 @@ function calling, audio and sub-animation tracks, is pretty much unique.

However, the support for blending those animations via ``AnimationPlayer`` is relatively limited, as only a fixed cross-fade transition time can be set.

:ref:`AnimationTree <class_AnimationTree>` is a new node introduced in Godot 3.1 to deal with advanced transitions.
It supersedes the ancient ``AnimationTreePlayer``, while adding a huge amount of features and flexibility.

Creating an AnimationTree
-------------------------

Expand Down
4 changes: 3 additions & 1 deletion tutorials/audio/sync_with_audio.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ The most common way to reduce latency is to shrink the audio buffers (again, by

This is a common tradeoff, so Godot ships with sensible defaults that should not need to be altered.

The problem, in the end, is not this slight delay but synchronizing graphics and audio for games that require it. Beginning with Godot 3.2, some helpers were added to obtain more precise playback timing.
The problem, in the end, is not this slight delay but synchronizing graphics and
audio for games that require it. Some helpers are available to obtain more
precise playback timing.

Using the system clock to sync
------------------------------
Expand Down
4 changes: 2 additions & 2 deletions tutorials/editor/using_the_web_editor.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
Using the Web editor
====================

Since Godot 3.3, there is a `Web editor <https://editor.godotengine.org/>`__
you can use to work on new or existing projects.
There is a `Web editor <https://editor.godotengine.org/>`__ you can use to work
on new or existing projects.

.. note::

Expand Down
4 changes: 0 additions & 4 deletions tutorials/inputs/controllers_gamepads_joysticks.rst
Original file line number Diff line number Diff line change
Expand Up @@ -136,10 +136,6 @@ use ``Input.is_action_pressed()``:
held, ``Input.is_action_just_pressed()`` will only return ``true`` for one
frame after the button has been pressed.

In Godot versions before 3.4, such as 3.3, ``Input.get_vector()`` and
``Input.get_axis()`` aren't available. Only ``Input.get_action_strength()``
and ``Input.is_action_pressed()`` are available in Godot 3.3.

Vibration
---------

Expand Down
2 changes: 1 addition & 1 deletion tutorials/scripting/gdscript/gdscript_styleguide.rst
Original file line number Diff line number Diff line change
Expand Up @@ -917,7 +917,7 @@ in that order.
Static typing
-------------

Since Godot 3.1, GDScript supports :ref:`optional static typing<doc_gdscript_static_typing>`.
GDScript supports :ref:`optional static typing<doc_gdscript_static_typing>`.

Declared types
~~~~~~~~~~~~~~
Expand Down
6 changes: 3 additions & 3 deletions tutorials/scripting/gdscript/static_typing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -384,9 +384,9 @@ Warning system
Detailed documentation about the GDScript warning system has been moved to
:ref:`doc_gdscript_warning_system`.

From version 3.1, Godot gives you warnings about your code as you write it:
the engine identifies sections of your code that may lead to issues at runtime,
but lets you decide whether or not you want to leave the code as it is.
Godot gives you warnings about your code as you write it. The engine identifies
sections of your code that may lead to issues at runtime, but lets you decide
whether or not you want to leave the code as it is.

We have a number of warnings aimed specifically at users of typed GDScript.
By default, these warnings are disabled, you can enable them in Project Settings
Expand Down