Removes the parts that state that the navigation layers have anything to do with how a navigation map merges the navigation regions or navigation mesh polygons. Also corrects wrong statement about changing the navigation layers of a region as that change requires a server sync.
(cherry picked from commit 3ba1dd072c)
The `SetAction` and `SetPressed` are internal methods and can't be invoked directly outside of that assembly. However, the `Action` and `Pressed` property setters invoke them instead.
(cherry picked from commit 14e03b981f)
Command used:
lychee **/*.rst --github-token="..." --accept="100..=103,200..=299,429"
429 error codes were allowed due to a high number of false positives,
even with a GitHub token specified.
(cherry picked from commit e7fdb120c7)
- Remove incorrect notice about GPUParticles2D not supporting
collision. This is supported using LightOccluder2D with SDF
generation enabled.
(cherry picked from commit 23c0ee2833)
Corrected the C# code from the example in the 'Controlling the animation' section, fixing the class name used by the generic method GetNode<T>(), as well as the string parameter.
(cherry picked from commit 4c6e4e7d1e)
- Recommend writing each enum item on its own line, similar to C++.
- Recommend using spaces around inline dictionary declarations
to make them easier to distinguish from arrays (due to similar-looking
`[]` and `{}` characters in most fonts). This is commonly found
in Python or JavaScript style guides.
(cherry picked from commit 71cdbdd055)
It's just a minor change, but I got confused on why the material was still using the transparent pipeline even though I removed all writes to ALPHA. So adding this should clarify things.
(cherry picked from commit 99da9754d1)
Current documentation refers to "Physics2DServer" exclusively in C# code snippet, when the actual name should be PhysicsServer2D.
(cherry picked from commit 5114103e23)
As pointed out in Issue #8904, a Transform3D is a 3x4 transformation matrix, not a 4x3. While that issue does point out other areas of concern on this specific page, this update is simply to fix that error. The change can be found on line 35.
(cherry picked from commit 9fdfe11004)
- Recommend CA certificates as the first option, as they're trusted
by other applications and require less configuration. Let's Encrypt
has made CA certificates available for free for a while now.
- Link to mkcert as an alternative for self-signed certificates
(for local development purposes).
(cherry picked from commit 8acfc9fa52)
* Update gdscript_styleguide.rst - clarified sentence and grammar
- Clarified the statement on "One statement per line"
- Removed unclear sentence with incorrect grammar
---------
Co-authored-by: A Thousand Ships <96648715+AThousandShips@users.noreply.github.com>
(cherry picked from commit 3d441150b1)