Commit Graph
6420 Commits
Author SHA1 Message Date
Yuri Sizov dbfe3b1d26 Reorganize documentation for contributors
- Merge Community/Contributing and Engine Development into one top-level section, Contributing.
- Structure it in a way that gives equal priority to various ways to contribute, including documentation.
- Rename several articles to be more comprehensive and in line with the overall state of the documentation.
- Rewrite the guide for class reference contributions.
2023-01-10 01:49:30 +03:00
Max Hilbrunner 42ff57a7bb Merge pull request #6535 from filiperinaldi/fix_using_lld
Fix example on how to use lld
2023-01-09 23:08:34 +01:00
Max Hilbrunner 20f33d0b13 Merge pull request #5910 from godotengine/dependabot/pip/sphinx-tabs-3.4.1
Bump sphinx-tabs from 3.3.1 to 3.4.1
2023-01-09 23:05:44 +01:00
Max Hilbrunner 6414fe31f4 Merge pull request #6556 from godotengine/dependabot/pip/sphinxext-opengraph-0.7.5
Bump sphinxext-opengraph from 0.6.3 to 0.7.5
2023-01-09 23:05:29 +01:00
Max Hilbrunner ff3bfcce5d Merge pull request #6369 from godotengine/dependabot/pip/sphinx-rtd-theme-1.1.1
Bump sphinx-rtd-theme from 1.0.0 to 1.1.1
2023-01-09 23:05:19 +01:00
Max Hilbrunner af8ccbe56b Merge pull request #6396 from Sauermann/fix-input-event-tutorial
Update Input Event Tutorial
2023-01-09 23:03:44 +01:00
Brendan Hansknecht eb65fa2857 First 2d game docs - minor typo fix (#6555)
* First 2d game typo fix

Super minor type fix for first 2d game tutorial
2023-01-09 22:57:24 +01:00
Vincent GSandMax Hilbrunner 6e17faa5e8 Including newer versions of Xcode (#6520)
* Including newer versions of Xcode

In this PR we are including some new methods that may be needed for extrar the XCode that are archived using **xip** file

Co-authored-by: Max Hilbrunner <mhilbrunner@users.noreply.github.com>
2023-01-09 21:00:20 +01:00
Max Hilbrunner f38e40e858 Merge pull request #6544 from Simo-1234/patch-1
Error in the C# style guide
2023-01-09 20:54:07 +01:00
Josh Creek fbf70a7c6b fix(#6539) Update C# documentation for Godot 4 (#6548)
* fix(#6539) Update C# documentation for Godot 4
2023-01-09 20:52:40 +01:00
Max Hilbrunner b0eff76a0f Merge pull request #6569 from jmdejong/patch-3
fix imulExtended description
2023-01-09 06:48:03 +01:00
Winston 0e69978598 Use 32 bits when converting back from bytes in Using compute shaders (#6571)
Fixes an oversight from a previous documentation update.
2023-01-09 01:37:25 +01:00
Max Hilbrunner b8dcd3f18f Merge pull request #6553 from smix8/navregion_doc_update_4.x
Clarify NavigationServer created regions
2023-01-09 00:17:33 +01:00
J.M. de Jong 116cfdf9b7 fix imulExtended description 2023-01-08 18:38:02 +01:00
Max Hilbrunner 1e985a4f13 Merge pull request #6523 from YuriSizov/rtd-versions-local
Add a custom local template for the RTD panel
2023-01-08 15:58:14 +01:00
Max Hilbrunner 1f8f95705f Merge pull request #6521 from YuriSizov/frontend-improve-navigation-styling
Make the navigation sidebar less crowded and noisy
2023-01-08 15:30:14 +01:00
Sheep 82c49b952f fixed a typo in cpu optimizations (#6566) 2023-01-07 11:38:14 -08:00
Thiago Lages de Alencar 591296ceb3 Update in description (#6526)
* Update `in` description

It can be used without the `if` keyword
It appears as keyword in gdscript tokenizer: https://github.com/godotengine/godot/blob/0103af1ddda6a2aa31227965141dd7d3a513e081/modules/gdscript/gdscript_tokenizer.cpp#L474
2023-01-06 01:00:57 +01:00
Max Hilbrunner 3b5e316d11 Merge pull request #6551 from c-schembri/patch-1
Update C# code example
2023-01-06 00:47:20 +01:00
Yuri Sizov 3f8fd6d127 Rename Tutorials to Manual, move migration guide to a higher level (#6509) 2023-01-05 15:37:47 -08:00
Jon Gonzalez b603b1df3a Update compute_shaders.rst (#6468) 2023-01-04 12:21:43 -08:00
dependabot[bot] 734d0b3503 Bump sphinxext-opengraph from 0.6.3 to 0.7.5
Bumps [sphinxext-opengraph](https://github.com/wpilibsuite/sphinxext-opengraph) from 0.6.3 to 0.7.5.
- [Release notes](https://github.com/wpilibsuite/sphinxext-opengraph/releases)
- [Commits](https://github.com/wpilibsuite/sphinxext-opengraph/compare/v0.6.3...v0.7.5)

---
updated-dependencies:
- dependency-name: sphinxext-opengraph
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-01-04 09:01:15 +00:00
smix8 9b190a7254 Clarify NavigationServer created regions
Clarify that NavigationServer create navigation regions do not join a navigation map automatically like a NavigationRegion node would. The server API created regions need a manual map assignment with region_set_map().
2023-01-03 03:33:53 +01:00
Curtis 4342e03419 Update C# code example
Use the `Root` property instead of the deprecated `GetRoot` method.
`PropagateNotification` accepts an `int` and not a `long`, and so `NotificationWmCloseRequest` needs to be cast to `int`.
2023-01-03 03:03:14 +10:00
Simo-1234 e5f4132e16 Error in the C# style guide
There was written tertiary operator instead of ternary
2022-12-31 11:33:37 +01:00
Yuri Sizov 945853908b Merge pull request #6532 from AndrewPerson/patch-1
Fixed incorrect Texture type in example
2022-12-30 20:27:28 +03:00
Filipe Rinaldi 8578c72bce Fix example on how to use lld
The "use_lld=yes" was removed in Godot (c8479c0d4d). The new parameter
which allows using lld is "linker=lld".
2022-12-30 10:30:58 +00:00
AndrewPerson ac4995d01e Fixed incorrect Texture type in example 2022-12-30 15:37:30 +11:00
Yuri Sizov 97e69ebc72 Merge pull request #6481 from Piralein/gd-export
Update GDScript Export Docs
2022-12-30 02:17:59 +03:00
Hana 74804eb8e9 update gdscript export docs 2022-12-29 22:20:33 +01:00
Yuri Sizov 8d38e7501d Add a custom local template for the RTD panel 2022-12-29 19:06:54 +03:00
Yuri Sizov 98e96ced67 Make the navigation sidebar less crowded and noisy 2022-12-29 19:05:50 +03:00
Yuri Sizov 90e9d64e78 Merge pull request #6530 from YuriSizov/fix-midword-regex
Simplify midword break regex to avoid unsupported features
2022-12-29 19:03:12 +03:00
Yuri Sizov da5f51317c Merge pull request #6522 from YuriSizov/fix-more-formatting
Fix reported formatting issues and property references
2022-12-29 19:01:30 +03:00
Yuri Sizov 52903b7778 Simplify midword break regex to avoid unsupported features 2022-12-29 18:54:29 +03:00
Yuri Sizov d5fc4b2866 Merge pull request #6525 from 31/dev/31/resource-constructor-cs
Fix Resource scripting blocks and C# examples
2022-12-29 17:49:14 +03:00
31 0ed7937482 Fix Resource scripting blocks and C# examples 2022-12-28 22:35:47 -08:00
Yuri Sizov 6b9ec31b0a Fix reported formatting issues and property references 2022-12-27 21:25:42 +03:00
Yuri Sizov 32a3cd2a29 Merge pull request #6438 from adamscott/fix-midword-link-wrapping-issues
Fix midword link wrapping issues using Javascript
2022-12-27 20:47:19 +03:00
Adam Scott 2b06a3822d Fix midword link wrapping issues
Adds <wbr> which is suggested linebreaks to each class reference link
in the sidebar once the page is ready.
2022-12-27 20:42:22 +03:00
Max Hilbrunner 47506dd4b0 Merge pull request #6507 from smix8/doc_fix_navdiffactortypes_4.x
Fix Navigation doc for different actor types due to recent renames
2022-12-27 17:53:39 +01:00
Max Hilbrunner 1ecd9bc1fa Merge pull request #6517 from denicolas/patch-4
Jumping and squashing monsters - Typos
2022-12-27 17:52:21 +01:00
Denis NICOLAS eb7c9618aa Jumping and squashing monsters - Typos
In "Jumping":
"In games, you really want controls to be responsive and giving instant speed boosts like these, while unrealistic, feel great."
should be:
"In games, you really want controls to be responsive and giving instant speed boosts like these, while unrealistic, feels great."
or:
"In games, you really want controls to be responsive and instant speed boosts like these, while unrealistic, feel great."

"Notice that the Y axis is positive upwards. That's unlike 2D, where the Y axis is positive downward."
should be:
"Notice that the Y axis is positive upwards. That's unlike 2D, where the Y axis is positive downwards."
or:
"Notice that the Y axis is positive upward. That's unlike 2D, where the Y axis is positive downward."
2022-12-26 19:30:48 +01:00
J.M. de Jong 7fe43cfc8e Update Shading language to refer to set_shader_parameter() (#6515) 2022-12-26 17:21:06 +01:00
Yuri Sizov e2076762e1 Merge pull request #6510 from YuriSizov/home-update-structure
Update the structure of the home page
2022-12-26 16:56:25 +03:00
Yuri Sizov 7dafd84edf Merge pull request #6378 from Calinou/improve-bisecting-regressions
Improve the Bisecting regressions page
2022-12-26 16:55:15 +03:00
smix8 512307b829 Fix Navigation doc for different actor types due to recent renames
Fixes Navigation doc for different actor types due to recent renames.
2022-12-25 18:33:15 +01:00
Max Hilbrunner 83cbbb0382 Merge pull request #6512 from YuriSizov/versions-clean-up
Hide excessive elements from the RTD panel, improve the looks
2022-12-25 13:54:33 +01:00
Hugo Locurcio 548267c279 Improve the Bisecting regressions page
- Update the page to match the new versioning policy.
- Add a Bash function to retrieve alpha/beta/RC commit hashes
  from the command line.
- Mention caveats related to project compatibility and
  output binary names.
2022-12-25 00:11:10 +01:00
Bruno Wilson Portes 93f4f601d6 Remove extraneous space in the 3D game tutorial's Mob script (#6508) 2022-12-24 20:56:39 +01:00