diff --git a/.github/workflows/sync_class_ref.yml b/.github/workflows/sync_class_ref.yml index 3a713cf4e24..39d6dc7c424 100644 --- a/.github/workflows/sync_class_ref.yml +++ b/.github/workflows/sync_class_ref.yml @@ -2,15 +2,10 @@ name: Sync Class Reference on: workflow_dispatch: - # Scheduled updates only run on the default/master branch. - schedule: - # Run it at night (European time) every Saturday. - # The offset is there to try and avoid the high load times. - - cron: '15 3 * * 6' # Make sure jobs cannot overlap. concurrency: - group: classref-sync-ci-master + group: classref-sync-ci-4.1 cancel-in-progress: true jobs: @@ -18,7 +13,7 @@ jobs: name: Update class reference files based on the engine revision runs-on: ubuntu-latest env: - engine_rev: 'master' + engine_rev: '4.1' steps: - name: Checkout the documentation repository diff --git a/about/docs_changelog.rst b/about/docs_changelog.rst index 91bd578d6d7..ba94da0f659 100644 --- a/about/docs_changelog.rst +++ b/about/docs_changelog.rst @@ -1,5 +1,3 @@ -:article_outdated: True - .. _doc_docs_changelog: Documentation changelog @@ -13,6 +11,121 @@ added since version 3.0. .. note:: This document only contains new pages so not all changes are reflected, many pages have been substantially updated but are not reflected in this document. +New pages since version 4.0 +--------------------------- + +Development +^^^^^^^^^^^ + +- :ref:`doc_internal_rendering_architecture` +- :ref:`doc_using_sanitizers` + +Migrating +^^^^^^^^^ + +- :ref:`doc_upgrading_to_godot_4.1` + +Physics +^^^^^^^ + +- :ref:`doc_troubleshooting_physics_issues` + +New pages since version 3.6 +--------------------------- + +2D +^^ + +- :ref:`doc_2d_antialiasing` + +3D +^^ + +- :ref:`doc_3d_antialiasing` +- :ref:`doc_faking_global_illumination` +- :ref:`doc_introduction_to_global_illumination` +- :ref:`doc_mesh_lod` +- :ref:`doc_occlusion_culling` +- :ref:`doc_using_sdfgi` +- :ref:`doc_using_decals` +- :ref:`doc_visibility_ranges` +- :ref:`doc_volumetric_fog` +- :ref:`doc_variable_rate_shading` +- :ref:`doc_physical_light_and_camera_units` + +Animation +^^^^^^^^^ + +- :ref:`doc_creating_movies` + +Assets pipeline +^^^^^^^^^^^^^^^ + +- :ref:`doc_retargeting_3d_skeletons` + +Development +^^^^^^^^^^^ + +- :ref:`doc_custom_platform_ports` + +Migrating +^^^^^^^^^ + +- :ref:`doc_upgrading_to_godot_4` + +Physics +^^^^^^^ + +- :ref:`doc_large_world_coordinates` + +Scripting +^^^^^^^^^ + +- :ref:`doc_custom_performance_monitors` +- :ref:`doc_c_sharp_collections` +- :ref:`doc_c_sharp_global_classes` +- :ref:`doc_c_sharp_variant` + +Shaders +^^^^^^^ + +- :ref:`doc_compute_shaders` + +Workflow +^^^^^^^^ + +- :ref:`doc_pr_review_guidelines` + +XR +^^ + +- :ref:`doc_introducing_xr_tools` +- :ref:`doc_xr_action_map` +- :ref:`doc_deploying_to_android` + +New pages since version 3.5 +--------------------------- + +None. + +New pages since version 3.4 +--------------------------- + +3D +^^ + +- :ref:`doc_3d_text` + +Animation +^^^^^^^^^ + +- :ref:`doc_playing_videos` + +Editor +^^^^^^ + +- :ref:`doc_managing_editor_features` + New pages since version 3.3 --------------------------- @@ -87,7 +200,6 @@ Math Platform-specific ^^^^^^^^^^^^^^^^^ -- :ref:`doc_android_custom_build` - :ref:`doc_plugins_for_ios` - :ref:`doc_ios_plugin` - :ref:`doc_html5_shell_classref` diff --git a/about/faq.rst b/about/faq.rst index a37fbc91392..5834fa006d1 100644 --- a/about/faq.rst +++ b/about/faq.rst @@ -81,12 +81,14 @@ the long run, for prototyping, developing Minimum Viable Products (MVPs), and focusing on Time-To-Market (TTM), GDScript will provide a fast, friendly, and capable way of developing your games. -Note that C# support is still relatively new, and as such, you may encounter some -issues along the way. Our friendly and hard-working development community is always -ready to tackle new problems as they arise, but since this is an open source project, -we recommend that you first do some due diligence yourself. Searching through -discussions on `open issues `_ is a -great way to start your troubleshooting. +Note that C# support is still relatively new, and as such, you may encounter +some issues along the way. C# support is also currently missing on Android, iOS +and web platforms. Our friendly and hard-working development community is always +ready to tackle new problems as they arise, but since this is an open source +project, we recommend that you first do some due diligence yourself. Searching +through discussions on +`open issues `__ +is a great way to start your troubleshooting. As for new languages, support is possible via third parties with GDExtensions. (See the question about plugins below). Work is currently underway, for example, on unofficial bindings for Godot @@ -376,6 +378,20 @@ When is the next release of Godot out? When it's ready! See :ref:`doc_release_policy_when_is_next_release_out` for more information. +Which Godot version should I use for a new project? +--------------------------------------------------- + +We recommend using Godot 4.x for new projects, but depending on the feature set +you need, it may be better to use 3.x instead. See +:ref:`doc_release_policy_which_version_should_i_use` for more information. + +Should I upgrade my project to use new Godot versions? +------------------------------------------------------ + +Some new versions are safer to upgrade to than others. In general, whether you +should upgrade depends on your project's circumstances. See +:ref:`doc_release_policy_should_i_upgrade_my_project` for more information. + I would like to contribute! How can I get started? -------------------------------------------------- diff --git a/about/list_of_features.rst b/about/list_of_features.rst index 07dd54b332f..653b3e0997a 100644 --- a/about/list_of_features.rst +++ b/about/list_of_features.rst @@ -433,7 +433,8 @@ Scripting - Full support for the C# 10.0 syntax and features. -- Supports Windows, Linux and macOS. +- Supports Windows, Linux and macOS. Mobile/web platforms are currently + unsupported. To use C# on mobile/web platforms, use Godot 3 instead. - Using an external editor is recommended to benefit from IDE functionality. **GDExtension (C, C++, Rust, D, ...):** diff --git a/about/release_policy.rst b/about/release_policy.rst index b279364d6bd..5f5ecba96af 100644 --- a/about/release_policy.rst +++ b/about/release_policy.rst @@ -77,41 +77,44 @@ If you experience an issue using an older patch release, please upgrade to the latest patch release of that series and test again before reporting an issue on GitHub. -+-------------+----------------------+--------------------------------------------------------------------------+ -| **Version** | **Release date** | **Support level** | -+-------------+----------------------+--------------------------------------------------------------------------+ -| Godot 4.1 | Q2-Q3 2023 (estimate)| |unstable| *Development.* Receives new features as well as bug fixes | -| (`master`) | | while under development. | -+-------------+----------------------+--------------------------------------------------------------------------+ -| Godot 4.0 | March 2023 | |supported| Receives fixes for bugs, security and platform support | -| | | issues, as well as backwards-compatible usability enhancements. | -+-------------+----------------------+--------------------------------------------------------------------------+ -| Godot 3.6 | Q2-Q3 2023 (estimate)| |supported| *Beta.* Receives new features as well as bug fixes while | -| (`3.x`, LTS)| | under development. Will be released *after* 4.0. | -+-------------+----------------------+--------------------------------------------------------------------------+ -| Godot 3.5 | August 2022 | |supported| Receives fixes for bugs, security and platform support | -| | | issues, as well as backwards-compatible usability enhancements. | -+-------------+----------------------+--------------------------------------------------------------------------+ -| Godot 3.4 | November 2021 | |eol| No longer supported, as fully superseded by the compatible 3.5 | -| | | release (last update: 3.4.5). | -+-------------+----------------------+--------------------------------------------------------------------------+ -| Godot 3.3 | April 2021 | |eol| No longer supported, as fully superseded by the compatible 3.4 | -| | | release (last update: 3.3.4). | -+-------------+----------------------+--------------------------------------------------------------------------+ -| Godot 3.2 | January 2020 | |eol| No longer supported (last update: 3.2.3). | -+-------------+----------------------+--------------------------------------------------------------------------+ -| Godot 3.1 | March 2019 | |eol| No longer supported (last update: 3.1.2). | -+-------------+----------------------+--------------------------------------------------------------------------+ -| Godot 3.0 | January 2018 | |eol| No longer supported (last update: 3.0.6). | -+-------------+----------------------+--------------------------------------------------------------------------+ -| Godot 2.1 | July 2016 | |eol| No longer supported (last update: 2.1.6). | -+-------------+----------------------+--------------------------------------------------------------------------+ -| Godot 2.0 | February 2016 | |eol| No longer supported (last update: 2.0.4.1). | -+-------------+----------------------+--------------------------------------------------------------------------+ -| Godot 1.1 | May 2015 | |eol| No longer supported. | -+-------------+----------------------+--------------------------------------------------------------------------+ -| Godot 1.0 | December 2014 | |eol| No longer supported. | -+-------------+----------------------+--------------------------------------------------------------------------+ ++--------------+----------------------+--------------------------------------------------------------------------+ +| **Version** | **Release date** | **Support level** | ++--------------+----------------------+--------------------------------------------------------------------------+ +| Godot 4.2 | November 2023 | |unstable| *Development.* Receives new features, usability and | +| (`master`) | (estimate) | performance improvements, as well as bug fixes, while under development. | ++--------------+----------------------+--------------------------------------------------------------------------+ +| Godot 4.1 | July 2023 | |supported| Receives fixes for bugs and security issues, as well as | +| | | patches that enable platform support. | ++--------------+----------------------+--------------------------------------------------------------------------+ +| Godot 4.0 | March 2023 | |supported| Receives fixes for bugs and security issues, as well as | +| | | patches that enable platform support. | ++--------------+----------------------+--------------------------------------------------------------------------+ +| Godot 3.6 | Q3 2023 (estimate) | |supported| *Beta.* Receives new features, usability and performance | +| (`3.x`, LTS) | | improvements, as well as bug fixes, while under development. | ++--------------+----------------------+--------------------------------------------------------------------------+ +| Godot 3.5 | August 2022 | |supported| Receives fixes for bugs and security issues, as well as | +| | | patches that enable platform support. | ++--------------+----------------------+--------------------------------------------------------------------------+ +| Godot 3.4 | November 2021 | |eol| No longer supported, as fully superseded by the compatible 3.5 | +| | | release (last update: 3.4.5). | ++--------------+----------------------+--------------------------------------------------------------------------+ +| Godot 3.3 | April 2021 | |eol| No longer supported, as fully superseded by the compatible 3.4 | +| | | release (last update: 3.3.4). | ++--------------+----------------------+--------------------------------------------------------------------------+ +| Godot 3.2 | January 2020 | |eol| No longer supported (last update: 3.2.3). | ++--------------+----------------------+--------------------------------------------------------------------------+ +| Godot 3.1 | March 2019 | |eol| No longer supported (last update: 3.1.2). | ++--------------+----------------------+--------------------------------------------------------------------------+ +| Godot 3.0 | January 2018 | |eol| No longer supported (last update: 3.0.6). | ++--------------+----------------------+--------------------------------------------------------------------------+ +| Godot 2.1 | July 2016 | |eol| No longer supported (last update: 2.1.6). | ++--------------+----------------------+--------------------------------------------------------------------------+ +| Godot 2.0 | February 2016 | |eol| No longer supported (last update: 2.0.4.1). | ++--------------+----------------------+--------------------------------------------------------------------------+ +| Godot 1.1 | May 2015 | |eol| No longer supported. | ++--------------+----------------------+--------------------------------------------------------------------------+ +| Godot 1.0 | December 2014 | |eol| No longer supported. | ++--------------+----------------------+--------------------------------------------------------------------------+ .. |supported| image:: img/supported.png .. |partial| image:: img/partial.png @@ -132,6 +135,60 @@ provided for testing purposes only. See :ref:`doc_upgrading_to_godot_4` for instructions on migrating a project from Godot 3.x to 4.x. +.. _doc_release_policy_which_version_should_i_use: + +Which version should I use for a new project? +--------------------------------------------- + +We recommend using Godot 4.x for new projects, as the Godot 4.x series will be +supported long after 3.x stops receiving updates in the future. One caveat is +that a lot of third-party documentation hasn't been updated for Godot 4.x yet. +If you have to follow a tutorial designed for Godot 3.x, we recommend keeping +:ref:`doc_upgrading_to_godot_4` open in a separate tab to check which methods +have been renamed (if you get a script error while trying to use a specific node +or method that was renamed in Godot 4.x). + +If your project requires a feature that is missing in 4.x (such as GLES2/WebGL +1.0), you should use Godot 3.x for a new project instead. + +.. _doc_release_policy_should_i_upgrade_my_project: + +Should I upgrade my project to use new engine versions? +------------------------------------------------------- + +.. note:: + + Upgrading software while working on a project is inherently risky, so + consider whether it's a good idea for your project before attempting an + upgrade. Also, make backups of your project or use version control to + prevent losing data in case the upgrade goes wrong. + + That said, we do our best to keep minor and especially patch releases + compatible with existing projects. + +The general recommendation is to upgrade your project to follow new *patch* +releases, such as upgrading from 4.0.2 to 4.0.3. This ensures you get bug fixes, +security updates and platform support updates (which is especially important for +mobile platforms). You also get continued support, as only the last patch +release receives support on official community platforms. + +For *minor* releases, you should determine whether it's a good idea to upgrade +on a case-by-case basis. We've made a lot of effort in making the upgrade +process as seamless as possible, but some breaking changes may be present in +minor releases, along with a greater risk of regressions. Some fixes included in +minor releases may also change a class' expected behavior as required to fix +some bugs. This is especially the case in classes marked as *experimental* in +the documentation. + +*Major* releases bring a lot of new functionality, but they also remove +previously existing functionality and may raise hardware requirements. They also +require much more work to upgrade to compared to minor releases. As a result, we +recommend sticking with the major release you've started your project with if +you are happy with how your project currently works. For example, if your +project was started with 3.5, we recommend upgrading to 3.5.2 and possibly 3.6 +in the future, but not to 4.0+, unless your project really needs the new +features that come with 4.0+. + .. _doc_release_policy_when_is_next_release_out: When is the next release out? @@ -158,3 +215,63 @@ The 3.6 release is still planned and should be the last stable branch of Godot as long as users still need it (due to missing features in Godot 4.x, or having published games which they need to keep updating for platform requirements). + +What are the criteria for compatibility across engine versions? +--------------------------------------------------------------- + +.. note:: + + This section is intended to be used by contributors to determine which + changes are safe for a given release. The list is not exhaustive; it only + outlines the most common situations encountered during Godot's development. + +The following changes are acceptable in patch releases: + +- Fixing a bug in a way that has no major negative impact on most projects, such + as a visual or physics bug. Godot's physics engine is not deterministic, so + physics bug fixes are not considered to break compatibility. If fixing a bug + has a negative impact that could impact a lot of projects, it should be made + optional (e.g. using a project setting or separate method). +- Adding a new optional parameter to a method. +- Small-scale editor usability tweaks. + +Note that we tend to be more conservative with the fixes we allow in each +subsequent patch release. For instance, 4.0.1 may receive more impactful fixes +than 4.0.4 would. + +The following changes are acceptable in minor releases, but not patch releases: + +- Significant new features. +- Renaming a method parameter. In C#, method parameters can be passed by name + (but not in GDScript). As a result, this can break some projects that use C#. +- Deprecating a method, member variable, or class. This is done by adding a + deprecated flag to its class reference, which will show up in the editor. When + a method is marked as deprecated, it's slated to be removed in the next + *major* release. +- Changes that affect the default project theme's visuals. +- Bug fixes which significantly change the behavior or the output, with the aim + to meet user expectations better. In comparison, in patch releases, we may + favor keeping a buggy behavior so we don't break existing projects which + likely already rely on the bug or use a workaround. +- Performance optimizations that result in visual changes. + +The following changes are considered **compatibility-breaking** and can only be +performed in a new major release: + +- Renaming or removing a method, member variable, or class. +- Modifying a node's inheritance tree by making it inherit from a different class. +- Changing the default value of a project setting value in a way that affects existing + projects. To only affect new projects, the project manager should write a + modified ``project.godot`` instead. + +Since Godot 5.0 hasn't been branched off yet, we currently discourage making +compatibility-breaking changes of this kind. + +.. note:: + + When modifying a method's signature in any fashion (including adding an + optional parameter), a GDExtension compatibility method must be created. + This ensures that existing GDExtensions continue to work across patch and + minor releases, so that users don't have to recompile them. + See `pull request #76446 ` + for more information. diff --git a/classes/class_@gdscript.rst b/classes/class_@gdscript.rst index 889fab9491f..6562dec75b4 100644 --- a/classes/class_@gdscript.rst +++ b/classes/class_@gdscript.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/modules/gdscript/doc_classes/@GDScript.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/modules/gdscript/doc_classes/@GDScript.xml. .. _class_@GDScript: diff --git a/classes/class_@globalscope.rst b/classes/class_@globalscope.rst index 56e60da7d8e..62e49e08b39 100644 --- a/classes/class_@globalscope.rst +++ b/classes/class_@globalscope.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/@GlobalScope.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/@GlobalScope.xml. .. _class_@GlobalScope: diff --git a/classes/class_aabb.rst b/classes/class_aabb.rst index 9898bce3228..51a61ee7c85 100644 --- a/classes/class_aabb.rst +++ b/classes/class_aabb.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AABB.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AABB.xml. .. _class_AABB: diff --git a/classes/class_acceptdialog.rst b/classes/class_acceptdialog.rst index 93961f13b83..186f2a6e3f7 100644 --- a/classes/class_acceptdialog.rst +++ b/classes/class_acceptdialog.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AcceptDialog.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AcceptDialog.xml. .. _class_AcceptDialog: diff --git a/classes/class_aescontext.rst b/classes/class_aescontext.rst index b28ed7eddae..81398c76f6a 100644 --- a/classes/class_aescontext.rst +++ b/classes/class_aescontext.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AESContext.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AESContext.xml. .. _class_AESContext: diff --git a/classes/class_animatablebody2d.rst b/classes/class_animatablebody2d.rst index 1d1ade07434..9f7f70f18eb 100644 --- a/classes/class_animatablebody2d.rst +++ b/classes/class_animatablebody2d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AnimatableBody2D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AnimatableBody2D.xml. .. _class_AnimatableBody2D: diff --git a/classes/class_animatablebody3d.rst b/classes/class_animatablebody3d.rst index fbb83dc160c..461d6270bc5 100644 --- a/classes/class_animatablebody3d.rst +++ b/classes/class_animatablebody3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AnimatableBody3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AnimatableBody3D.xml. .. _class_AnimatableBody3D: diff --git a/classes/class_animatedsprite2d.rst b/classes/class_animatedsprite2d.rst index 14694f60e1b..902a2af1511 100644 --- a/classes/class_animatedsprite2d.rst +++ b/classes/class_animatedsprite2d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AnimatedSprite2D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AnimatedSprite2D.xml. .. _class_AnimatedSprite2D: diff --git a/classes/class_animatedsprite3d.rst b/classes/class_animatedsprite3d.rst index 00d764ef917..e1e4e560150 100644 --- a/classes/class_animatedsprite3d.rst +++ b/classes/class_animatedsprite3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AnimatedSprite3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AnimatedSprite3D.xml. .. _class_AnimatedSprite3D: diff --git a/classes/class_animatedtexture.rst b/classes/class_animatedtexture.rst index 32877b2fa79..a8572392349 100644 --- a/classes/class_animatedtexture.rst +++ b/classes/class_animatedtexture.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AnimatedTexture.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AnimatedTexture.xml. .. _class_AnimatedTexture: diff --git a/classes/class_animation.rst b/classes/class_animation.rst index 750d1d97101..30b12671e11 100644 --- a/classes/class_animation.rst +++ b/classes/class_animation.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Animation.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Animation.xml. .. _class_Animation: diff --git a/classes/class_animationlibrary.rst b/classes/class_animationlibrary.rst index 58047aa5f91..69a179b50a8 100644 --- a/classes/class_animationlibrary.rst +++ b/classes/class_animationlibrary.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AnimationLibrary.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AnimationLibrary.xml. .. _class_AnimationLibrary: diff --git a/classes/class_animationnode.rst b/classes/class_animationnode.rst index 0b1e89fa87f..4d4ed5fb993 100644 --- a/classes/class_animationnode.rst +++ b/classes/class_animationnode.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AnimationNode.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AnimationNode.xml. .. _class_AnimationNode: diff --git a/classes/class_animationnodeadd2.rst b/classes/class_animationnodeadd2.rst index 64a130851eb..d4408384539 100644 --- a/classes/class_animationnodeadd2.rst +++ b/classes/class_animationnodeadd2.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AnimationNodeAdd2.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AnimationNodeAdd2.xml. .. _class_AnimationNodeAdd2: diff --git a/classes/class_animationnodeadd3.rst b/classes/class_animationnodeadd3.rst index a925fdb152d..a2c5215e9e1 100644 --- a/classes/class_animationnodeadd3.rst +++ b/classes/class_animationnodeadd3.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AnimationNodeAdd3.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AnimationNodeAdd3.xml. .. _class_AnimationNodeAdd3: @@ -19,7 +19,7 @@ Blends two of three animations additively inside of an :ref:`AnimationNodeBlendT Description ----------- -A resource to add to an :ref:`AnimationNodeBlendTree`. Blends two animations out of three additively out of three based on the amounmt value. +A resource to add to an :ref:`AnimationNodeBlendTree`. Blends two animations out of three additively out of three based on the amount value. This animation node has three inputs: diff --git a/classes/class_animationnodeanimation.rst b/classes/class_animationnodeanimation.rst index 0402128cad7..b46a4b82aa5 100644 --- a/classes/class_animationnodeanimation.rst +++ b/classes/class_animationnodeanimation.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AnimationNodeAnimation.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AnimationNodeAnimation.xml. .. _class_AnimationNodeAnimation: diff --git a/classes/class_animationnodeblend2.rst b/classes/class_animationnodeblend2.rst index f9cee33de6b..496de2bb618 100644 --- a/classes/class_animationnodeblend2.rst +++ b/classes/class_animationnodeblend2.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AnimationNodeBlend2.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AnimationNodeBlend2.xml. .. _class_AnimationNodeBlend2: diff --git a/classes/class_animationnodeblend3.rst b/classes/class_animationnodeblend3.rst index 918df1c3652..d738f59bb1f 100644 --- a/classes/class_animationnodeblend3.rst +++ b/classes/class_animationnodeblend3.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AnimationNodeBlend3.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AnimationNodeBlend3.xml. .. _class_AnimationNodeBlend3: @@ -19,7 +19,7 @@ Blends two of three animations linearly inside of an :ref:`AnimationNodeBlendTre Description ----------- -A resource to add to an :ref:`AnimationNodeBlendTree`. Blends two animations out of three linearly out of three based on the amounmt value. +A resource to add to an :ref:`AnimationNodeBlendTree`. Blends two animations out of three linearly out of three based on the amount value. This animation node has three inputs: diff --git a/classes/class_animationnodeblendspace1d.rst b/classes/class_animationnodeblendspace1d.rst index 6401bd1796b..45c2ce4e6a1 100644 --- a/classes/class_animationnodeblendspace1d.rst +++ b/classes/class_animationnodeblendspace1d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AnimationNodeBlendSpace1D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AnimationNodeBlendSpace1D.xml. .. _class_AnimationNodeBlendSpace1D: diff --git a/classes/class_animationnodeblendspace2d.rst b/classes/class_animationnodeblendspace2d.rst index 3c18fb7f6db..90882319774 100644 --- a/classes/class_animationnodeblendspace2d.rst +++ b/classes/class_animationnodeblendspace2d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AnimationNodeBlendSpace2D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AnimationNodeBlendSpace2D.xml. .. _class_AnimationNodeBlendSpace2D: diff --git a/classes/class_animationnodeblendtree.rst b/classes/class_animationnodeblendtree.rst index 3f2678462c8..0beec0ba312 100644 --- a/classes/class_animationnodeblendtree.rst +++ b/classes/class_animationnodeblendtree.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AnimationNodeBlendTree.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AnimationNodeBlendTree.xml. .. _class_AnimationNodeBlendTree: diff --git a/classes/class_animationnodeoneshot.rst b/classes/class_animationnodeoneshot.rst index 8ce199e9188..c65859841e3 100644 --- a/classes/class_animationnodeoneshot.rst +++ b/classes/class_animationnodeoneshot.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AnimationNodeOneShot.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AnimationNodeOneShot.xml. .. _class_AnimationNodeOneShot: diff --git a/classes/class_animationnodeoutput.rst b/classes/class_animationnodeoutput.rst index e2a42ed16b8..397907c2b9f 100644 --- a/classes/class_animationnodeoutput.rst +++ b/classes/class_animationnodeoutput.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AnimationNodeOutput.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AnimationNodeOutput.xml. .. _class_AnimationNodeOutput: diff --git a/classes/class_animationnodestatemachine.rst b/classes/class_animationnodestatemachine.rst index dc2acc3a16d..84fe9917a26 100644 --- a/classes/class_animationnodestatemachine.rst +++ b/classes/class_animationnodestatemachine.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AnimationNodeStateMachine.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AnimationNodeStateMachine.xml. .. _class_AnimationNodeStateMachine: diff --git a/classes/class_animationnodestatemachineplayback.rst b/classes/class_animationnodestatemachineplayback.rst index 95f1f16cb12..6c66e707ca0 100644 --- a/classes/class_animationnodestatemachineplayback.rst +++ b/classes/class_animationnodestatemachineplayback.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AnimationNodeStateMachinePlayback.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AnimationNodeStateMachinePlayback.xml. .. _class_AnimationNodeStateMachinePlayback: diff --git a/classes/class_animationnodestatemachinetransition.rst b/classes/class_animationnodestatemachinetransition.rst index 97ab5127bee..ccb74132b58 100644 --- a/classes/class_animationnodestatemachinetransition.rst +++ b/classes/class_animationnodestatemachinetransition.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AnimationNodeStateMachineTransition.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AnimationNodeStateMachineTransition.xml. .. _class_AnimationNodeStateMachineTransition: diff --git a/classes/class_animationnodesub2.rst b/classes/class_animationnodesub2.rst index d5c78a34894..7d44dedd530 100644 --- a/classes/class_animationnodesub2.rst +++ b/classes/class_animationnodesub2.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AnimationNodeSub2.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AnimationNodeSub2.xml. .. _class_AnimationNodeSub2: diff --git a/classes/class_animationnodesync.rst b/classes/class_animationnodesync.rst index 61f12ed8e1b..0467b72e0a5 100644 --- a/classes/class_animationnodesync.rst +++ b/classes/class_animationnodesync.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AnimationNodeSync.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AnimationNodeSync.xml. .. _class_AnimationNodeSync: diff --git a/classes/class_animationnodetimescale.rst b/classes/class_animationnodetimescale.rst index ae36d63988f..0381a67fb2c 100644 --- a/classes/class_animationnodetimescale.rst +++ b/classes/class_animationnodetimescale.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AnimationNodeTimeScale.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AnimationNodeTimeScale.xml. .. _class_AnimationNodeTimeScale: diff --git a/classes/class_animationnodetimeseek.rst b/classes/class_animationnodetimeseek.rst index dff81716df6..0cebdf01208 100644 --- a/classes/class_animationnodetimeseek.rst +++ b/classes/class_animationnodetimeseek.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AnimationNodeTimeSeek.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AnimationNodeTimeSeek.xml. .. _class_AnimationNodeTimeSeek: diff --git a/classes/class_animationnodetransition.rst b/classes/class_animationnodetransition.rst index f4b40e2dd5b..511f0f2cdb8 100644 --- a/classes/class_animationnodetransition.rst +++ b/classes/class_animationnodetransition.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AnimationNodeTransition.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AnimationNodeTransition.xml. .. _class_AnimationNodeTransition: diff --git a/classes/class_animationplayer.rst b/classes/class_animationplayer.rst index fedf56ff130..448761fb94f 100644 --- a/classes/class_animationplayer.rst +++ b/classes/class_animationplayer.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AnimationPlayer.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AnimationPlayer.xml. .. _class_AnimationPlayer: diff --git a/classes/class_animationrootnode.rst b/classes/class_animationrootnode.rst index 92d035caf13..69b636cba86 100644 --- a/classes/class_animationrootnode.rst +++ b/classes/class_animationrootnode.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AnimationRootNode.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AnimationRootNode.xml. .. _class_AnimationRootNode: diff --git a/classes/class_animationtree.rst b/classes/class_animationtree.rst index 27de3d5677c..6033d52b368 100644 --- a/classes/class_animationtree.rst +++ b/classes/class_animationtree.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AnimationTree.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AnimationTree.xml. .. _class_AnimationTree: diff --git a/classes/class_area2d.rst b/classes/class_area2d.rst index 1a3594d0430..c3d1a830db0 100644 --- a/classes/class_area2d.rst +++ b/classes/class_area2d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Area2D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Area2D.xml. .. _class_Area2D: diff --git a/classes/class_area3d.rst b/classes/class_area3d.rst index 973b15c10fa..adef031718d 100644 --- a/classes/class_area3d.rst +++ b/classes/class_area3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Area3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Area3D.xml. .. _class_Area3D: diff --git a/classes/class_array.rst b/classes/class_array.rst index a149653ccde..6631ab29b82 100644 --- a/classes/class_array.rst +++ b/classes/class_array.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Array.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Array.xml. .. _class_Array: diff --git a/classes/class_arraymesh.rst b/classes/class_arraymesh.rst index 00e6b5d6e8a..3981c704edf 100644 --- a/classes/class_arraymesh.rst +++ b/classes/class_arraymesh.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/ArrayMesh.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/ArrayMesh.xml. .. _class_ArrayMesh: diff --git a/classes/class_arrayoccluder3d.rst b/classes/class_arrayoccluder3d.rst index aba0e729b9e..26b3602dba1 100644 --- a/classes/class_arrayoccluder3d.rst +++ b/classes/class_arrayoccluder3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/ArrayOccluder3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/ArrayOccluder3D.xml. .. _class_ArrayOccluder3D: diff --git a/classes/class_aspectratiocontainer.rst b/classes/class_aspectratiocontainer.rst index 54cd9722d1c..451a7d2ed76 100644 --- a/classes/class_aspectratiocontainer.rst +++ b/classes/class_aspectratiocontainer.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AspectRatioContainer.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AspectRatioContainer.xml. .. _class_AspectRatioContainer: diff --git a/classes/class_astar2d.rst b/classes/class_astar2d.rst index fec15fd8acd..80dbdb34d8b 100644 --- a/classes/class_astar2d.rst +++ b/classes/class_astar2d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AStar2D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AStar2D.xml. .. _class_AStar2D: diff --git a/classes/class_astar3d.rst b/classes/class_astar3d.rst index ed02d2309af..b1ace45d144 100644 --- a/classes/class_astar3d.rst +++ b/classes/class_astar3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AStar3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AStar3D.xml. .. _class_AStar3D: diff --git a/classes/class_astargrid2d.rst b/classes/class_astargrid2d.rst index 914de4b88b3..2e2748b375e 100644 --- a/classes/class_astargrid2d.rst +++ b/classes/class_astargrid2d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AStarGrid2D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AStarGrid2D.xml. .. _class_AStarGrid2D: diff --git a/classes/class_atlastexture.rst b/classes/class_atlastexture.rst index e030f88a7d2..83482dbf4db 100644 --- a/classes/class_atlastexture.rst +++ b/classes/class_atlastexture.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AtlasTexture.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AtlasTexture.xml. .. _class_AtlasTexture: diff --git a/classes/class_audiobuslayout.rst b/classes/class_audiobuslayout.rst index 3ef224170c8..a004f8646a3 100644 --- a/classes/class_audiobuslayout.rst +++ b/classes/class_audiobuslayout.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AudioBusLayout.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AudioBusLayout.xml. .. _class_AudioBusLayout: diff --git a/classes/class_audioeffect.rst b/classes/class_audioeffect.rst index d103cbcc5a5..ae4247f2cba 100644 --- a/classes/class_audioeffect.rst +++ b/classes/class_audioeffect.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AudioEffect.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AudioEffect.xml. .. _class_AudioEffect: diff --git a/classes/class_audioeffectamplify.rst b/classes/class_audioeffectamplify.rst index e115333cb7b..fae65d590a4 100644 --- a/classes/class_audioeffectamplify.rst +++ b/classes/class_audioeffectamplify.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AudioEffectAmplify.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AudioEffectAmplify.xml. .. _class_AudioEffectAmplify: diff --git a/classes/class_audioeffectbandlimitfilter.rst b/classes/class_audioeffectbandlimitfilter.rst index eecb2230fce..25a6f833db5 100644 --- a/classes/class_audioeffectbandlimitfilter.rst +++ b/classes/class_audioeffectbandlimitfilter.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AudioEffectBandLimitFilter.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AudioEffectBandLimitFilter.xml. .. _class_AudioEffectBandLimitFilter: diff --git a/classes/class_audioeffectbandpassfilter.rst b/classes/class_audioeffectbandpassfilter.rst index b82d4b4eb32..1cf727e441e 100644 --- a/classes/class_audioeffectbandpassfilter.rst +++ b/classes/class_audioeffectbandpassfilter.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AudioEffectBandPassFilter.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AudioEffectBandPassFilter.xml. .. _class_AudioEffectBandPassFilter: diff --git a/classes/class_audioeffectcapture.rst b/classes/class_audioeffectcapture.rst index 5fbea618514..f0fd366c6f7 100644 --- a/classes/class_audioeffectcapture.rst +++ b/classes/class_audioeffectcapture.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AudioEffectCapture.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AudioEffectCapture.xml. .. _class_AudioEffectCapture: diff --git a/classes/class_audioeffectchorus.rst b/classes/class_audioeffectchorus.rst index c54e8ad0013..565cd75c389 100644 --- a/classes/class_audioeffectchorus.rst +++ b/classes/class_audioeffectchorus.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AudioEffectChorus.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AudioEffectChorus.xml. .. _class_AudioEffectChorus: diff --git a/classes/class_audioeffectcompressor.rst b/classes/class_audioeffectcompressor.rst index 1186680375c..3436fa29a96 100644 --- a/classes/class_audioeffectcompressor.rst +++ b/classes/class_audioeffectcompressor.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AudioEffectCompressor.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AudioEffectCompressor.xml. .. _class_AudioEffectCompressor: diff --git a/classes/class_audioeffectdelay.rst b/classes/class_audioeffectdelay.rst index e964a46440b..658586e6396 100644 --- a/classes/class_audioeffectdelay.rst +++ b/classes/class_audioeffectdelay.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AudioEffectDelay.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AudioEffectDelay.xml. .. _class_AudioEffectDelay: diff --git a/classes/class_audioeffectdistortion.rst b/classes/class_audioeffectdistortion.rst index e91d8fef5a3..9150f775508 100644 --- a/classes/class_audioeffectdistortion.rst +++ b/classes/class_audioeffectdistortion.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AudioEffectDistortion.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AudioEffectDistortion.xml. .. _class_AudioEffectDistortion: diff --git a/classes/class_audioeffecteq.rst b/classes/class_audioeffecteq.rst index c132fb0eb03..2b689f484d9 100644 --- a/classes/class_audioeffecteq.rst +++ b/classes/class_audioeffecteq.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AudioEffectEQ.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AudioEffectEQ.xml. .. _class_AudioEffectEQ: diff --git a/classes/class_audioeffecteq10.rst b/classes/class_audioeffecteq10.rst index d1dc42c3276..49794b71d41 100644 --- a/classes/class_audioeffecteq10.rst +++ b/classes/class_audioeffecteq10.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AudioEffectEQ10.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AudioEffectEQ10.xml. .. _class_AudioEffectEQ10: diff --git a/classes/class_audioeffecteq21.rst b/classes/class_audioeffecteq21.rst index b753bc6dd78..a8527e8b232 100644 --- a/classes/class_audioeffecteq21.rst +++ b/classes/class_audioeffecteq21.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AudioEffectEQ21.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AudioEffectEQ21.xml. .. _class_AudioEffectEQ21: diff --git a/classes/class_audioeffecteq6.rst b/classes/class_audioeffecteq6.rst index 098fd3a3fa7..dae4814538e 100644 --- a/classes/class_audioeffecteq6.rst +++ b/classes/class_audioeffecteq6.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AudioEffectEQ6.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AudioEffectEQ6.xml. .. _class_AudioEffectEQ6: diff --git a/classes/class_audioeffectfilter.rst b/classes/class_audioeffectfilter.rst index 0e92c34a8f4..714495c1d18 100644 --- a/classes/class_audioeffectfilter.rst +++ b/classes/class_audioeffectfilter.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AudioEffectFilter.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AudioEffectFilter.xml. .. _class_AudioEffectFilter: diff --git a/classes/class_audioeffecthighpassfilter.rst b/classes/class_audioeffecthighpassfilter.rst index 94ec635c03b..5b0ecdc64d1 100644 --- a/classes/class_audioeffecthighpassfilter.rst +++ b/classes/class_audioeffecthighpassfilter.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AudioEffectHighPassFilter.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AudioEffectHighPassFilter.xml. .. _class_AudioEffectHighPassFilter: diff --git a/classes/class_audioeffecthighshelffilter.rst b/classes/class_audioeffecthighshelffilter.rst index 5b3073dba2d..dea5a6513fe 100644 --- a/classes/class_audioeffecthighshelffilter.rst +++ b/classes/class_audioeffecthighshelffilter.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AudioEffectHighShelfFilter.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AudioEffectHighShelfFilter.xml. .. _class_AudioEffectHighShelfFilter: diff --git a/classes/class_audioeffectinstance.rst b/classes/class_audioeffectinstance.rst index d513421de35..b801131301e 100644 --- a/classes/class_audioeffectinstance.rst +++ b/classes/class_audioeffectinstance.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AudioEffectInstance.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AudioEffectInstance.xml. .. _class_AudioEffectInstance: diff --git a/classes/class_audioeffectlimiter.rst b/classes/class_audioeffectlimiter.rst index 67a2866af20..67c9f8a750e 100644 --- a/classes/class_audioeffectlimiter.rst +++ b/classes/class_audioeffectlimiter.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AudioEffectLimiter.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AudioEffectLimiter.xml. .. _class_AudioEffectLimiter: diff --git a/classes/class_audioeffectlowpassfilter.rst b/classes/class_audioeffectlowpassfilter.rst index 17d4ec73d4f..8cc958bbdf6 100644 --- a/classes/class_audioeffectlowpassfilter.rst +++ b/classes/class_audioeffectlowpassfilter.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AudioEffectLowPassFilter.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AudioEffectLowPassFilter.xml. .. _class_AudioEffectLowPassFilter: diff --git a/classes/class_audioeffectlowshelffilter.rst b/classes/class_audioeffectlowshelffilter.rst index 595fc3e938e..7eac68d58cc 100644 --- a/classes/class_audioeffectlowshelffilter.rst +++ b/classes/class_audioeffectlowshelffilter.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AudioEffectLowShelfFilter.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AudioEffectLowShelfFilter.xml. .. _class_AudioEffectLowShelfFilter: diff --git a/classes/class_audioeffectnotchfilter.rst b/classes/class_audioeffectnotchfilter.rst index 1a117207306..083ecc7f0df 100644 --- a/classes/class_audioeffectnotchfilter.rst +++ b/classes/class_audioeffectnotchfilter.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AudioEffectNotchFilter.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AudioEffectNotchFilter.xml. .. _class_AudioEffectNotchFilter: diff --git a/classes/class_audioeffectpanner.rst b/classes/class_audioeffectpanner.rst index cbfcd3d958d..9b968cb64d1 100644 --- a/classes/class_audioeffectpanner.rst +++ b/classes/class_audioeffectpanner.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AudioEffectPanner.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AudioEffectPanner.xml. .. _class_AudioEffectPanner: diff --git a/classes/class_audioeffectphaser.rst b/classes/class_audioeffectphaser.rst index 1d77b88c898..1fe0a1cac1d 100644 --- a/classes/class_audioeffectphaser.rst +++ b/classes/class_audioeffectphaser.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AudioEffectPhaser.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AudioEffectPhaser.xml. .. _class_AudioEffectPhaser: diff --git a/classes/class_audioeffectpitchshift.rst b/classes/class_audioeffectpitchshift.rst index cc851533213..42bd439bf56 100644 --- a/classes/class_audioeffectpitchshift.rst +++ b/classes/class_audioeffectpitchshift.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AudioEffectPitchShift.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AudioEffectPitchShift.xml. .. _class_AudioEffectPitchShift: diff --git a/classes/class_audioeffectrecord.rst b/classes/class_audioeffectrecord.rst index 5b9c5aa2547..a58ca1ea254 100644 --- a/classes/class_audioeffectrecord.rst +++ b/classes/class_audioeffectrecord.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AudioEffectRecord.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AudioEffectRecord.xml. .. _class_AudioEffectRecord: diff --git a/classes/class_audioeffectreverb.rst b/classes/class_audioeffectreverb.rst index 5b7ca1e55a3..18e961124c7 100644 --- a/classes/class_audioeffectreverb.rst +++ b/classes/class_audioeffectreverb.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AudioEffectReverb.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AudioEffectReverb.xml. .. _class_AudioEffectReverb: diff --git a/classes/class_audioeffectspectrumanalyzer.rst b/classes/class_audioeffectspectrumanalyzer.rst index 428cd25da1c..193c025426d 100644 --- a/classes/class_audioeffectspectrumanalyzer.rst +++ b/classes/class_audioeffectspectrumanalyzer.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AudioEffectSpectrumAnalyzer.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AudioEffectSpectrumAnalyzer.xml. .. _class_AudioEffectSpectrumAnalyzer: diff --git a/classes/class_audioeffectspectrumanalyzerinstance.rst b/classes/class_audioeffectspectrumanalyzerinstance.rst index e6262df4f3c..8adc627640e 100644 --- a/classes/class_audioeffectspectrumanalyzerinstance.rst +++ b/classes/class_audioeffectspectrumanalyzerinstance.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AudioEffectSpectrumAnalyzerInstance.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AudioEffectSpectrumAnalyzerInstance.xml. .. _class_AudioEffectSpectrumAnalyzerInstance: diff --git a/classes/class_audioeffectstereoenhance.rst b/classes/class_audioeffectstereoenhance.rst index fe4586d53c4..22090d69785 100644 --- a/classes/class_audioeffectstereoenhance.rst +++ b/classes/class_audioeffectstereoenhance.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AudioEffectStereoEnhance.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AudioEffectStereoEnhance.xml. .. _class_AudioEffectStereoEnhance: diff --git a/classes/class_audiolistener2d.rst b/classes/class_audiolistener2d.rst index c6f29cc15fa..a5779f84d4c 100644 --- a/classes/class_audiolistener2d.rst +++ b/classes/class_audiolistener2d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AudioListener2D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AudioListener2D.xml. .. _class_AudioListener2D: diff --git a/classes/class_audiolistener3d.rst b/classes/class_audiolistener3d.rst index 4e744d48974..95e9e86a814 100644 --- a/classes/class_audiolistener3d.rst +++ b/classes/class_audiolistener3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AudioListener3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AudioListener3D.xml. .. _class_AudioListener3D: diff --git a/classes/class_audioserver.rst b/classes/class_audioserver.rst index 706314ae63b..d501e852d6f 100644 --- a/classes/class_audioserver.rst +++ b/classes/class_audioserver.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AudioServer.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AudioServer.xml. .. _class_AudioServer: diff --git a/classes/class_audiostream.rst b/classes/class_audiostream.rst index 1abf82d5441..31dd01bcb87 100644 --- a/classes/class_audiostream.rst +++ b/classes/class_audiostream.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AudioStream.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AudioStream.xml. .. _class_AudioStream: diff --git a/classes/class_audiostreamgenerator.rst b/classes/class_audiostreamgenerator.rst index d6928f2bd88..1561a9c3c3a 100644 --- a/classes/class_audiostreamgenerator.rst +++ b/classes/class_audiostreamgenerator.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AudioStreamGenerator.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AudioStreamGenerator.xml. .. _class_AudioStreamGenerator: diff --git a/classes/class_audiostreamgeneratorplayback.rst b/classes/class_audiostreamgeneratorplayback.rst index bb13ffabb02..6bcdd6ddc58 100644 --- a/classes/class_audiostreamgeneratorplayback.rst +++ b/classes/class_audiostreamgeneratorplayback.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AudioStreamGeneratorPlayback.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AudioStreamGeneratorPlayback.xml. .. _class_AudioStreamGeneratorPlayback: diff --git a/classes/class_audiostreammicrophone.rst b/classes/class_audiostreammicrophone.rst index a12bee0020a..5fb1a393f56 100644 --- a/classes/class_audiostreammicrophone.rst +++ b/classes/class_audiostreammicrophone.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AudioStreamMicrophone.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AudioStreamMicrophone.xml. .. _class_AudioStreamMicrophone: diff --git a/classes/class_audiostreammp3.rst b/classes/class_audiostreammp3.rst index a44449ee97b..2202d46f7d3 100644 --- a/classes/class_audiostreammp3.rst +++ b/classes/class_audiostreammp3.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/modules/minimp3/doc_classes/AudioStreamMP3.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/modules/minimp3/doc_classes/AudioStreamMP3.xml. .. _class_AudioStreamMP3: diff --git a/classes/class_audiostreamoggvorbis.rst b/classes/class_audiostreamoggvorbis.rst index 0135cf79f9d..3f2715991a0 100644 --- a/classes/class_audiostreamoggvorbis.rst +++ b/classes/class_audiostreamoggvorbis.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/modules/vorbis/doc_classes/AudioStreamOggVorbis.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/modules/vorbis/doc_classes/AudioStreamOggVorbis.xml. .. _class_AudioStreamOggVorbis: diff --git a/classes/class_audiostreamplayback.rst b/classes/class_audiostreamplayback.rst index 1b1b8f52bd5..7454c8c9708 100644 --- a/classes/class_audiostreamplayback.rst +++ b/classes/class_audiostreamplayback.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AudioStreamPlayback.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AudioStreamPlayback.xml. .. _class_AudioStreamPlayback: diff --git a/classes/class_audiostreamplaybackoggvorbis.rst b/classes/class_audiostreamplaybackoggvorbis.rst index 173b7775fd7..8b058044de0 100644 --- a/classes/class_audiostreamplaybackoggvorbis.rst +++ b/classes/class_audiostreamplaybackoggvorbis.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/modules/vorbis/doc_classes/AudioStreamPlaybackOggVorbis.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/modules/vorbis/doc_classes/AudioStreamPlaybackOggVorbis.xml. .. _class_AudioStreamPlaybackOggVorbis: diff --git a/classes/class_audiostreamplaybackpolyphonic.rst b/classes/class_audiostreamplaybackpolyphonic.rst index 9f464c00677..46660a35d6f 100644 --- a/classes/class_audiostreamplaybackpolyphonic.rst +++ b/classes/class_audiostreamplaybackpolyphonic.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AudioStreamPlaybackPolyphonic.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AudioStreamPlaybackPolyphonic.xml. .. _class_AudioStreamPlaybackPolyphonic: diff --git a/classes/class_audiostreamplaybackresampled.rst b/classes/class_audiostreamplaybackresampled.rst index 9d8b879a71a..cb1abc2c288 100644 --- a/classes/class_audiostreamplaybackresampled.rst +++ b/classes/class_audiostreamplaybackresampled.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AudioStreamPlaybackResampled.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AudioStreamPlaybackResampled.xml. .. _class_AudioStreamPlaybackResampled: diff --git a/classes/class_audiostreamplayer.rst b/classes/class_audiostreamplayer.rst index d6e8606d2de..dc8ebfa5936 100644 --- a/classes/class_audiostreamplayer.rst +++ b/classes/class_audiostreamplayer.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AudioStreamPlayer.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AudioStreamPlayer.xml. .. _class_AudioStreamPlayer: diff --git a/classes/class_audiostreamplayer2d.rst b/classes/class_audiostreamplayer2d.rst index fad72083de0..a29ed9ed30c 100644 --- a/classes/class_audiostreamplayer2d.rst +++ b/classes/class_audiostreamplayer2d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AudioStreamPlayer2D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AudioStreamPlayer2D.xml. .. _class_AudioStreamPlayer2D: diff --git a/classes/class_audiostreamplayer3d.rst b/classes/class_audiostreamplayer3d.rst index 329176aa39f..a89169d4ed9 100644 --- a/classes/class_audiostreamplayer3d.rst +++ b/classes/class_audiostreamplayer3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AudioStreamPlayer3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AudioStreamPlayer3D.xml. .. _class_AudioStreamPlayer3D: diff --git a/classes/class_audiostreampolyphonic.rst b/classes/class_audiostreampolyphonic.rst index e69cff15630..73403b0ac5d 100644 --- a/classes/class_audiostreampolyphonic.rst +++ b/classes/class_audiostreampolyphonic.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AudioStreamPolyphonic.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AudioStreamPolyphonic.xml. .. _class_AudioStreamPolyphonic: diff --git a/classes/class_audiostreamrandomizer.rst b/classes/class_audiostreamrandomizer.rst index 7b6df38cf6b..78fc8a5ec4c 100644 --- a/classes/class_audiostreamrandomizer.rst +++ b/classes/class_audiostreamrandomizer.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AudioStreamRandomizer.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AudioStreamRandomizer.xml. .. _class_AudioStreamRandomizer: diff --git a/classes/class_audiostreamwav.rst b/classes/class_audiostreamwav.rst index c5e0d123399..6da11e8da50 100644 --- a/classes/class_audiostreamwav.rst +++ b/classes/class_audiostreamwav.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AudioStreamWAV.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/AudioStreamWAV.xml. .. _class_AudioStreamWAV: diff --git a/classes/class_backbuffercopy.rst b/classes/class_backbuffercopy.rst index 0869c24e121..924328f2645 100644 --- a/classes/class_backbuffercopy.rst +++ b/classes/class_backbuffercopy.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/BackBufferCopy.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/BackBufferCopy.xml. .. _class_BackBufferCopy: diff --git a/classes/class_basebutton.rst b/classes/class_basebutton.rst index c78a197575f..b10c80814f1 100644 --- a/classes/class_basebutton.rst +++ b/classes/class_basebutton.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/BaseButton.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/BaseButton.xml. .. _class_BaseButton: diff --git a/classes/class_basematerial3d.rst b/classes/class_basematerial3d.rst index 6acb8e27126..c0de0c63795 100644 --- a/classes/class_basematerial3d.rst +++ b/classes/class_basematerial3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/BaseMaterial3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/BaseMaterial3D.xml. .. _class_BaseMaterial3D: diff --git a/classes/class_basis.rst b/classes/class_basis.rst index 701b2cc1d67..0cbe18a4669 100644 --- a/classes/class_basis.rst +++ b/classes/class_basis.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Basis.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Basis.xml. .. _class_Basis: diff --git a/classes/class_bitmap.rst b/classes/class_bitmap.rst index 6ad3f5e32f9..eb287a03a8d 100644 --- a/classes/class_bitmap.rst +++ b/classes/class_bitmap.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/BitMap.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/BitMap.xml. .. _class_BitMap: diff --git a/classes/class_bone2d.rst b/classes/class_bone2d.rst index 7d01bb288bd..d45b0e27fab 100644 --- a/classes/class_bone2d.rst +++ b/classes/class_bone2d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Bone2D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Bone2D.xml. .. _class_Bone2D: diff --git a/classes/class_boneattachment3d.rst b/classes/class_boneattachment3d.rst index 4103c8fcb86..74a57481d3d 100644 --- a/classes/class_boneattachment3d.rst +++ b/classes/class_boneattachment3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/BoneAttachment3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/BoneAttachment3D.xml. .. _class_BoneAttachment3D: @@ -176,7 +176,7 @@ Sets the :ref:`NodePath` to the external skeleton that the BoneA void **set_use_external_skeleton** **(** :ref:`bool` use_external_skeleton **)** -Sets whether the BoneAttachment3D node will use an extenral :ref:`Skeleton3D` node rather than attenpting to use its parent node as the :ref:`Skeleton3D`. When set to ``true``, the BoneAttachment3D node will use the external :ref:`Skeleton3D` node set in :ref:`set_external_skeleton`. +Sets whether the BoneAttachment3D node will use an external :ref:`Skeleton3D` node rather than attempting to use its parent node as the :ref:`Skeleton3D`. When set to ``true``, the BoneAttachment3D node will use the external :ref:`Skeleton3D` node set in :ref:`set_external_skeleton`. .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)` .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)` diff --git a/classes/class_bonemap.rst b/classes/class_bonemap.rst index 580a2307e2d..f8950d2452e 100644 --- a/classes/class_bonemap.rst +++ b/classes/class_bonemap.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/BoneMap.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/BoneMap.xml. .. _class_BoneMap: diff --git a/classes/class_bool.rst b/classes/class_bool.rst index 9c326ad3d1e..a5971f6aa1d 100644 --- a/classes/class_bool.rst +++ b/classes/class_bool.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/bool.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/bool.xml. .. _class_bool: diff --git a/classes/class_boxcontainer.rst b/classes/class_boxcontainer.rst index acd05fb7838..6fa32300464 100644 --- a/classes/class_boxcontainer.rst +++ b/classes/class_boxcontainer.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/BoxContainer.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/BoxContainer.xml. .. _class_BoxContainer: diff --git a/classes/class_boxmesh.rst b/classes/class_boxmesh.rst index a4d69b3f0fb..c291f0e4044 100644 --- a/classes/class_boxmesh.rst +++ b/classes/class_boxmesh.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/BoxMesh.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/BoxMesh.xml. .. _class_BoxMesh: diff --git a/classes/class_boxoccluder3d.rst b/classes/class_boxoccluder3d.rst index 5e4ef9457ff..6d6836d1725 100644 --- a/classes/class_boxoccluder3d.rst +++ b/classes/class_boxoccluder3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/BoxOccluder3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/BoxOccluder3D.xml. .. _class_BoxOccluder3D: diff --git a/classes/class_boxshape3d.rst b/classes/class_boxshape3d.rst index 65d0aa5aef1..5080cd5d513 100644 --- a/classes/class_boxshape3d.rst +++ b/classes/class_boxshape3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/BoxShape3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/BoxShape3D.xml. .. _class_BoxShape3D: diff --git a/classes/class_button.rst b/classes/class_button.rst index 07c90e2101c..28a904aa0bd 100644 --- a/classes/class_button.rst +++ b/classes/class_button.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Button.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Button.xml. .. _class_Button: diff --git a/classes/class_buttongroup.rst b/classes/class_buttongroup.rst index 2905b6bdf73..043f459b807 100644 --- a/classes/class_buttongroup.rst +++ b/classes/class_buttongroup.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/ButtonGroup.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/ButtonGroup.xml. .. _class_ButtonGroup: diff --git a/classes/class_callable.rst b/classes/class_callable.rst index 01e96d41622..4641a759703 100644 --- a/classes/class_callable.rst +++ b/classes/class_callable.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Callable.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Callable.xml. .. _class_Callable: diff --git a/classes/class_callbacktweener.rst b/classes/class_callbacktweener.rst index 60cfc9cf793..2177ca7cc3a 100644 --- a/classes/class_callbacktweener.rst +++ b/classes/class_callbacktweener.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/CallbackTweener.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/CallbackTweener.xml. .. _class_CallbackTweener: diff --git a/classes/class_camera2d.rst b/classes/class_camera2d.rst index 440fc6a0e40..7b8abc99919 100644 --- a/classes/class_camera2d.rst +++ b/classes/class_camera2d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Camera2D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Camera2D.xml. .. _class_Camera2D: diff --git a/classes/class_camera3d.rst b/classes/class_camera3d.rst index 3d4834ee0f7..7b06d2db1ba 100644 --- a/classes/class_camera3d.rst +++ b/classes/class_camera3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Camera3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Camera3D.xml. .. _class_Camera3D: @@ -79,6 +79,8 @@ Methods +---------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`clear_current` **(** :ref:`bool` enable_next=true **)** | +---------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ + | :ref:`Projection` | :ref:`get_camera_projection` **(** **)** |const| | + +---------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`RID` | :ref:`get_camera_rid` **(** **)** |const| | +---------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`Transform3D` | :ref:`get_camera_transform` **(** **)** |const| | @@ -497,6 +499,18 @@ If this is the current camera, remove it from being current. If ``enable_next`` ---- +.. _class_Camera3D_method_get_camera_projection: + +.. rst-class:: classref-method + +:ref:`Projection` **get_camera_projection** **(** **)** |const| + +Returns the projection matrix that this camera uses to render to its associated viewport. The camera must be part of the scene tree to function. + +.. rst-class:: classref-item-separator + +---- + .. _class_Camera3D_method_get_camera_rid: .. rst-class:: classref-method diff --git a/classes/class_cameraattributes.rst b/classes/class_cameraattributes.rst index 169b42d3693..c6e02546e81 100644 --- a/classes/class_cameraattributes.rst +++ b/classes/class_cameraattributes.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/CameraAttributes.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/CameraAttributes.xml. .. _class_CameraAttributes: diff --git a/classes/class_cameraattributesphysical.rst b/classes/class_cameraattributesphysical.rst index 6acbb6fb125..65a84298be6 100644 --- a/classes/class_cameraattributesphysical.rst +++ b/classes/class_cameraattributesphysical.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/CameraAttributesPhysical.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/CameraAttributesPhysical.xml. .. _class_CameraAttributesPhysical: diff --git a/classes/class_cameraattributespractical.rst b/classes/class_cameraattributespractical.rst index 64eeae4e7ef..483efd27500 100644 --- a/classes/class_cameraattributespractical.rst +++ b/classes/class_cameraattributespractical.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/CameraAttributesPractical.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/CameraAttributesPractical.xml. .. _class_CameraAttributesPractical: diff --git a/classes/class_camerafeed.rst b/classes/class_camerafeed.rst index c4959eb44a6..ec77b3aaaa4 100644 --- a/classes/class_camerafeed.rst +++ b/classes/class_camerafeed.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/CameraFeed.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/CameraFeed.xml. .. _class_CameraFeed: diff --git a/classes/class_cameraserver.rst b/classes/class_cameraserver.rst index eecbd3e0877..dc0b83f8f24 100644 --- a/classes/class_cameraserver.rst +++ b/classes/class_cameraserver.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/CameraServer.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/CameraServer.xml. .. _class_CameraServer: diff --git a/classes/class_cameratexture.rst b/classes/class_cameratexture.rst index 49ec8a2c371..0aff81f9503 100644 --- a/classes/class_cameratexture.rst +++ b/classes/class_cameratexture.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/CameraTexture.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/CameraTexture.xml. .. _class_CameraTexture: diff --git a/classes/class_canvasgroup.rst b/classes/class_canvasgroup.rst index 0a8e5bf56c3..baee434644d 100644 --- a/classes/class_canvasgroup.rst +++ b/classes/class_canvasgroup.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/CanvasGroup.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/CanvasGroup.xml. .. _class_CanvasGroup: diff --git a/classes/class_canvasitem.rst b/classes/class_canvasitem.rst index 71c44eed8dd..5792b877628 100644 --- a/classes/class_canvasitem.rst +++ b/classes/class_canvasitem.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/CanvasItem.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/CanvasItem.xml. .. _class_CanvasItem: diff --git a/classes/class_canvasitemmaterial.rst b/classes/class_canvasitemmaterial.rst index 9a244683fc2..371ef017b1a 100644 --- a/classes/class_canvasitemmaterial.rst +++ b/classes/class_canvasitemmaterial.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/CanvasItemMaterial.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/CanvasItemMaterial.xml. .. _class_CanvasItemMaterial: diff --git a/classes/class_canvaslayer.rst b/classes/class_canvaslayer.rst index da81db3f059..70867866699 100644 --- a/classes/class_canvaslayer.rst +++ b/classes/class_canvaslayer.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/CanvasLayer.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/CanvasLayer.xml. .. _class_CanvasLayer: diff --git a/classes/class_canvasmodulate.rst b/classes/class_canvasmodulate.rst index 0c8e1787f48..b2e2c21b965 100644 --- a/classes/class_canvasmodulate.rst +++ b/classes/class_canvasmodulate.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/CanvasModulate.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/CanvasModulate.xml. .. _class_CanvasModulate: diff --git a/classes/class_canvastexture.rst b/classes/class_canvastexture.rst index bbe7817f4fa..94a42011628 100644 --- a/classes/class_canvastexture.rst +++ b/classes/class_canvastexture.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/CanvasTexture.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/CanvasTexture.xml. .. _class_CanvasTexture: diff --git a/classes/class_capsulemesh.rst b/classes/class_capsulemesh.rst index 9a6686e0c50..da9a6d020a4 100644 --- a/classes/class_capsulemesh.rst +++ b/classes/class_capsulemesh.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/CapsuleMesh.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/CapsuleMesh.xml. .. _class_CapsuleMesh: diff --git a/classes/class_capsuleshape2d.rst b/classes/class_capsuleshape2d.rst index f845eb04122..506c6866cfe 100644 --- a/classes/class_capsuleshape2d.rst +++ b/classes/class_capsuleshape2d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/CapsuleShape2D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/CapsuleShape2D.xml. .. _class_CapsuleShape2D: diff --git a/classes/class_capsuleshape3d.rst b/classes/class_capsuleshape3d.rst index 4406449bdbe..44102cbae76 100644 --- a/classes/class_capsuleshape3d.rst +++ b/classes/class_capsuleshape3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/CapsuleShape3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/CapsuleShape3D.xml. .. _class_CapsuleShape3D: diff --git a/classes/class_centercontainer.rst b/classes/class_centercontainer.rst index a5063b808cb..4fe11840bd7 100644 --- a/classes/class_centercontainer.rst +++ b/classes/class_centercontainer.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/CenterContainer.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/CenterContainer.xml. .. _class_CenterContainer: diff --git a/classes/class_characterbody2d.rst b/classes/class_characterbody2d.rst index b8b7f94edab..20ca2dfedda 100644 --- a/classes/class_characterbody2d.rst +++ b/classes/class_characterbody2d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/CharacterBody2D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/CharacterBody2D.xml. .. _class_CharacterBody2D: diff --git a/classes/class_characterbody3d.rst b/classes/class_characterbody3d.rst index fc59e387dfb..335747dd32e 100644 --- a/classes/class_characterbody3d.rst +++ b/classes/class_characterbody3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/CharacterBody3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/CharacterBody3D.xml. .. _class_CharacterBody3D: diff --git a/classes/class_charfxtransform.rst b/classes/class_charfxtransform.rst index c13d789d91a..fad65b52e83 100644 --- a/classes/class_charfxtransform.rst +++ b/classes/class_charfxtransform.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/CharFXTransform.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/CharFXTransform.xml. .. _class_CharFXTransform: diff --git a/classes/class_checkbox.rst b/classes/class_checkbox.rst index fe21e8a17bd..106ef23061c 100644 --- a/classes/class_checkbox.rst +++ b/classes/class_checkbox.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/CheckBox.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/CheckBox.xml. .. _class_CheckBox: diff --git a/classes/class_checkbutton.rst b/classes/class_checkbutton.rst index ff938ed61b9..b0ebcedb63f 100644 --- a/classes/class_checkbutton.rst +++ b/classes/class_checkbutton.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/CheckButton.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/CheckButton.xml. .. _class_CheckButton: diff --git a/classes/class_circleshape2d.rst b/classes/class_circleshape2d.rst index 7fb99a52b11..841b0280288 100644 --- a/classes/class_circleshape2d.rst +++ b/classes/class_circleshape2d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/CircleShape2D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/CircleShape2D.xml. .. _class_CircleShape2D: diff --git a/classes/class_classdb.rst b/classes/class_classdb.rst index cad69319776..52d41cce9ce 100644 --- a/classes/class_classdb.rst +++ b/classes/class_classdb.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/ClassDB.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/ClassDB.xml. .. _class_ClassDB: diff --git a/classes/class_codeedit.rst b/classes/class_codeedit.rst index 6a4c1502aff..392ab8a5e53 100644 --- a/classes/class_codeedit.rst +++ b/classes/class_codeedit.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/CodeEdit.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/CodeEdit.xml. .. _class_CodeEdit: diff --git a/classes/class_codehighlighter.rst b/classes/class_codehighlighter.rst index da00c53bd7e..c63ce445323 100644 --- a/classes/class_codehighlighter.rst +++ b/classes/class_codehighlighter.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/CodeHighlighter.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/CodeHighlighter.xml. .. _class_CodeHighlighter: diff --git a/classes/class_collisionobject2d.rst b/classes/class_collisionobject2d.rst index 0ab6a4badaf..9bcf08770e7 100644 --- a/classes/class_collisionobject2d.rst +++ b/classes/class_collisionobject2d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/CollisionObject2D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/CollisionObject2D.xml. .. _class_CollisionObject2D: diff --git a/classes/class_collisionobject3d.rst b/classes/class_collisionobject3d.rst index 6769bba2ea5..a9f28f5f0d3 100644 --- a/classes/class_collisionobject3d.rst +++ b/classes/class_collisionobject3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/CollisionObject3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/CollisionObject3D.xml. .. _class_CollisionObject3D: diff --git a/classes/class_collisionpolygon2d.rst b/classes/class_collisionpolygon2d.rst index 0395735b1d1..69d293c2793 100644 --- a/classes/class_collisionpolygon2d.rst +++ b/classes/class_collisionpolygon2d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/CollisionPolygon2D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/CollisionPolygon2D.xml. .. _class_CollisionPolygon2D: diff --git a/classes/class_collisionpolygon3d.rst b/classes/class_collisionpolygon3d.rst index 20af6216082..cd173364982 100644 --- a/classes/class_collisionpolygon3d.rst +++ b/classes/class_collisionpolygon3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/CollisionPolygon3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/CollisionPolygon3D.xml. .. _class_CollisionPolygon3D: diff --git a/classes/class_collisionshape2d.rst b/classes/class_collisionshape2d.rst index 8f23ab24682..fa3f7c81687 100644 --- a/classes/class_collisionshape2d.rst +++ b/classes/class_collisionshape2d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/CollisionShape2D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/CollisionShape2D.xml. .. _class_CollisionShape2D: diff --git a/classes/class_collisionshape3d.rst b/classes/class_collisionshape3d.rst index 79f376cc73c..5fae062c7f5 100644 --- a/classes/class_collisionshape3d.rst +++ b/classes/class_collisionshape3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/CollisionShape3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/CollisionShape3D.xml. .. _class_CollisionShape3D: diff --git a/classes/class_color.rst b/classes/class_color.rst index d65b4bc3921..e38b8a1ca9c 100644 --- a/classes/class_color.rst +++ b/classes/class_color.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Color.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Color.xml. .. _class_Color: diff --git a/classes/class_colorpicker.rst b/classes/class_colorpicker.rst index 7bf1435921c..de198de32d6 100644 --- a/classes/class_colorpicker.rst +++ b/classes/class_colorpicker.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/ColorPicker.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/ColorPicker.xml. .. _class_ColorPicker: diff --git a/classes/class_colorpickerbutton.rst b/classes/class_colorpickerbutton.rst index c2ef4f8a1a4..03c0f2edee9 100644 --- a/classes/class_colorpickerbutton.rst +++ b/classes/class_colorpickerbutton.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/ColorPickerButton.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/ColorPickerButton.xml. .. _class_ColorPickerButton: diff --git a/classes/class_colorrect.rst b/classes/class_colorrect.rst index 6a29a32142d..0e4db565d19 100644 --- a/classes/class_colorrect.rst +++ b/classes/class_colorrect.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/ColorRect.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/ColorRect.xml. .. _class_ColorRect: diff --git a/classes/class_compressedcubemap.rst b/classes/class_compressedcubemap.rst index 601cb66e8fc..fcfc7727e1d 100644 --- a/classes/class_compressedcubemap.rst +++ b/classes/class_compressedcubemap.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/CompressedCubemap.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/CompressedCubemap.xml. .. _class_CompressedCubemap: diff --git a/classes/class_compressedcubemaparray.rst b/classes/class_compressedcubemaparray.rst index bcc46bb9ed8..38f76f64dbe 100644 --- a/classes/class_compressedcubemaparray.rst +++ b/classes/class_compressedcubemaparray.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/CompressedCubemapArray.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/CompressedCubemapArray.xml. .. _class_CompressedCubemapArray: diff --git a/classes/class_compressedtexture2d.rst b/classes/class_compressedtexture2d.rst index 313b2f53edf..750f81b2842 100644 --- a/classes/class_compressedtexture2d.rst +++ b/classes/class_compressedtexture2d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/CompressedTexture2D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/CompressedTexture2D.xml. .. _class_CompressedTexture2D: diff --git a/classes/class_compressedtexture2darray.rst b/classes/class_compressedtexture2darray.rst index a2d0381d2e2..e0af2930235 100644 --- a/classes/class_compressedtexture2darray.rst +++ b/classes/class_compressedtexture2darray.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/CompressedTexture2DArray.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/CompressedTexture2DArray.xml. .. _class_CompressedTexture2DArray: diff --git a/classes/class_compressedtexture3d.rst b/classes/class_compressedtexture3d.rst index 4a24f97fc97..3b96b4e2513 100644 --- a/classes/class_compressedtexture3d.rst +++ b/classes/class_compressedtexture3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/CompressedTexture3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/CompressedTexture3D.xml. .. _class_CompressedTexture3D: diff --git a/classes/class_compressedtexturelayered.rst b/classes/class_compressedtexturelayered.rst index df135518397..9fa2c0212c3 100644 --- a/classes/class_compressedtexturelayered.rst +++ b/classes/class_compressedtexturelayered.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/CompressedTextureLayered.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/CompressedTextureLayered.xml. .. _class_CompressedTextureLayered: diff --git a/classes/class_concavepolygonshape2d.rst b/classes/class_concavepolygonshape2d.rst index cde57c64f9d..acc5e5ece9c 100644 --- a/classes/class_concavepolygonshape2d.rst +++ b/classes/class_concavepolygonshape2d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/ConcavePolygonShape2D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/ConcavePolygonShape2D.xml. .. _class_ConcavePolygonShape2D: diff --git a/classes/class_concavepolygonshape3d.rst b/classes/class_concavepolygonshape3d.rst index 042970feefb..156a423881d 100644 --- a/classes/class_concavepolygonshape3d.rst +++ b/classes/class_concavepolygonshape3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/ConcavePolygonShape3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/ConcavePolygonShape3D.xml. .. _class_ConcavePolygonShape3D: diff --git a/classes/class_conetwistjoint3d.rst b/classes/class_conetwistjoint3d.rst index 11c9de63300..47d7a59caff 100644 --- a/classes/class_conetwistjoint3d.rst +++ b/classes/class_conetwistjoint3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/ConeTwistJoint3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/ConeTwistJoint3D.xml. .. _class_ConeTwistJoint3D: diff --git a/classes/class_configfile.rst b/classes/class_configfile.rst index 9b589dc5cc5..6dd9cbf6536 100644 --- a/classes/class_configfile.rst +++ b/classes/class_configfile.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/ConfigFile.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/ConfigFile.xml. .. _class_ConfigFile: diff --git a/classes/class_confirmationdialog.rst b/classes/class_confirmationdialog.rst index bf95b48927e..88ef6571740 100644 --- a/classes/class_confirmationdialog.rst +++ b/classes/class_confirmationdialog.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/ConfirmationDialog.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/ConfirmationDialog.xml. .. _class_ConfirmationDialog: diff --git a/classes/class_container.rst b/classes/class_container.rst index 7ea0dadb794..422d70ac128 100644 --- a/classes/class_container.rst +++ b/classes/class_container.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Container.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Container.xml. .. _class_Container: diff --git a/classes/class_control.rst b/classes/class_control.rst index f41e8dcd0c9..ad8647518d4 100644 --- a/classes/class_control.rst +++ b/classes/class_control.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Control.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Control.xml. .. _class_Control: diff --git a/classes/class_convexpolygonshape2d.rst b/classes/class_convexpolygonshape2d.rst index e18485b0c40..ea3766339d1 100644 --- a/classes/class_convexpolygonshape2d.rst +++ b/classes/class_convexpolygonshape2d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/ConvexPolygonShape2D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/ConvexPolygonShape2D.xml. .. _class_ConvexPolygonShape2D: diff --git a/classes/class_convexpolygonshape3d.rst b/classes/class_convexpolygonshape3d.rst index 564eeaf1c17..45d40981e0d 100644 --- a/classes/class_convexpolygonshape3d.rst +++ b/classes/class_convexpolygonshape3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/ConvexPolygonShape3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/ConvexPolygonShape3D.xml. .. _class_ConvexPolygonShape3D: diff --git a/classes/class_cpuparticles2d.rst b/classes/class_cpuparticles2d.rst index 3a9c12f5aa4..3759ef7f13f 100644 --- a/classes/class_cpuparticles2d.rst +++ b/classes/class_cpuparticles2d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/CPUParticles2D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/CPUParticles2D.xml. .. _class_CPUParticles2D: diff --git a/classes/class_cpuparticles3d.rst b/classes/class_cpuparticles3d.rst index 37abe02e3eb..8bf5b8dbe26 100644 --- a/classes/class_cpuparticles3d.rst +++ b/classes/class_cpuparticles3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/CPUParticles3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/CPUParticles3D.xml. .. _class_CPUParticles3D: diff --git a/classes/class_crypto.rst b/classes/class_crypto.rst index e966425726f..950eb6931f4 100644 --- a/classes/class_crypto.rst +++ b/classes/class_crypto.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Crypto.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Crypto.xml. .. _class_Crypto: diff --git a/classes/class_cryptokey.rst b/classes/class_cryptokey.rst index c7bb2dc36e4..6758f559bfb 100644 --- a/classes/class_cryptokey.rst +++ b/classes/class_cryptokey.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/CryptoKey.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/CryptoKey.xml. .. _class_CryptoKey: diff --git a/classes/class_csgbox3d.rst b/classes/class_csgbox3d.rst index ad217382cfb..e789aca8991 100644 --- a/classes/class_csgbox3d.rst +++ b/classes/class_csgbox3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/modules/csg/doc_classes/CSGBox3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/modules/csg/doc_classes/CSGBox3D.xml. .. _class_CSGBox3D: diff --git a/classes/class_csgcombiner3d.rst b/classes/class_csgcombiner3d.rst index e4a4528c7a6..518475b8515 100644 --- a/classes/class_csgcombiner3d.rst +++ b/classes/class_csgcombiner3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/modules/csg/doc_classes/CSGCombiner3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/modules/csg/doc_classes/CSGCombiner3D.xml. .. _class_CSGCombiner3D: diff --git a/classes/class_csgcylinder3d.rst b/classes/class_csgcylinder3d.rst index 005321b136a..4e2f94fecfd 100644 --- a/classes/class_csgcylinder3d.rst +++ b/classes/class_csgcylinder3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/modules/csg/doc_classes/CSGCylinder3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/modules/csg/doc_classes/CSGCylinder3D.xml. .. _class_CSGCylinder3D: diff --git a/classes/class_csgmesh3d.rst b/classes/class_csgmesh3d.rst index fe5eb86b0a6..c40cba90102 100644 --- a/classes/class_csgmesh3d.rst +++ b/classes/class_csgmesh3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/modules/csg/doc_classes/CSGMesh3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/modules/csg/doc_classes/CSGMesh3D.xml. .. _class_CSGMesh3D: diff --git a/classes/class_csgpolygon3d.rst b/classes/class_csgpolygon3d.rst index 37a2c9c44ae..33c46c034d1 100644 --- a/classes/class_csgpolygon3d.rst +++ b/classes/class_csgpolygon3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/modules/csg/doc_classes/CSGPolygon3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/modules/csg/doc_classes/CSGPolygon3D.xml. .. _class_CSGPolygon3D: diff --git a/classes/class_csgprimitive3d.rst b/classes/class_csgprimitive3d.rst index a9ae4b31686..adadc57cce9 100644 --- a/classes/class_csgprimitive3d.rst +++ b/classes/class_csgprimitive3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/modules/csg/doc_classes/CSGPrimitive3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/modules/csg/doc_classes/CSGPrimitive3D.xml. .. _class_CSGPrimitive3D: diff --git a/classes/class_csgshape3d.rst b/classes/class_csgshape3d.rst index 9880e42cb97..9953a53daf7 100644 --- a/classes/class_csgshape3d.rst +++ b/classes/class_csgshape3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/modules/csg/doc_classes/CSGShape3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/modules/csg/doc_classes/CSGShape3D.xml. .. _class_CSGShape3D: diff --git a/classes/class_csgsphere3d.rst b/classes/class_csgsphere3d.rst index cf43c9e35f9..58285bba1e6 100644 --- a/classes/class_csgsphere3d.rst +++ b/classes/class_csgsphere3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/modules/csg/doc_classes/CSGSphere3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/modules/csg/doc_classes/CSGSphere3D.xml. .. _class_CSGSphere3D: diff --git a/classes/class_csgtorus3d.rst b/classes/class_csgtorus3d.rst index 24b4e412026..b7234e85dfb 100644 --- a/classes/class_csgtorus3d.rst +++ b/classes/class_csgtorus3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/modules/csg/doc_classes/CSGTorus3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/modules/csg/doc_classes/CSGTorus3D.xml. .. _class_CSGTorus3D: diff --git a/classes/class_csharpscript.rst b/classes/class_csharpscript.rst index 154e7807e63..189bc14fa39 100644 --- a/classes/class_csharpscript.rst +++ b/classes/class_csharpscript.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/modules/mono/doc_classes/CSharpScript.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/modules/mono/doc_classes/CSharpScript.xml. .. _class_CSharpScript: diff --git a/classes/class_cubemap.rst b/classes/class_cubemap.rst index bd2d494bff6..2a7a3f2dfbe 100644 --- a/classes/class_cubemap.rst +++ b/classes/class_cubemap.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Cubemap.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Cubemap.xml. .. _class_Cubemap: diff --git a/classes/class_cubemaparray.rst b/classes/class_cubemaparray.rst index a830f88800a..923f07300fd 100644 --- a/classes/class_cubemaparray.rst +++ b/classes/class_cubemaparray.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/CubemapArray.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/CubemapArray.xml. .. _class_CubemapArray: diff --git a/classes/class_curve.rst b/classes/class_curve.rst index 871ecf2b71c..a9178ac1736 100644 --- a/classes/class_curve.rst +++ b/classes/class_curve.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Curve.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Curve.xml. .. _class_Curve: diff --git a/classes/class_curve2d.rst b/classes/class_curve2d.rst index 881032528dd..e6e09e69346 100644 --- a/classes/class_curve2d.rst +++ b/classes/class_curve2d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Curve2D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Curve2D.xml. .. _class_Curve2D: diff --git a/classes/class_curve3d.rst b/classes/class_curve3d.rst index 0178ad0d67e..558aed62b93 100644 --- a/classes/class_curve3d.rst +++ b/classes/class_curve3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Curve3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Curve3D.xml. .. _class_Curve3D: diff --git a/classes/class_curvetexture.rst b/classes/class_curvetexture.rst index 860c3beddd9..943f7d97621 100644 --- a/classes/class_curvetexture.rst +++ b/classes/class_curvetexture.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/CurveTexture.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/CurveTexture.xml. .. _class_CurveTexture: diff --git a/classes/class_curvexyztexture.rst b/classes/class_curvexyztexture.rst index 87dd7252009..ee81dfe1b42 100644 --- a/classes/class_curvexyztexture.rst +++ b/classes/class_curvexyztexture.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/CurveXYZTexture.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/CurveXYZTexture.xml. .. _class_CurveXYZTexture: diff --git a/classes/class_cylindermesh.rst b/classes/class_cylindermesh.rst index 3ee943ee87d..feceebf8bc8 100644 --- a/classes/class_cylindermesh.rst +++ b/classes/class_cylindermesh.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/CylinderMesh.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/CylinderMesh.xml. .. _class_CylinderMesh: diff --git a/classes/class_cylindershape3d.rst b/classes/class_cylindershape3d.rst index 58b07d7cc9b..ff1ad2ebcbd 100644 --- a/classes/class_cylindershape3d.rst +++ b/classes/class_cylindershape3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/CylinderShape3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/CylinderShape3D.xml. .. _class_CylinderShape3D: diff --git a/classes/class_dampedspringjoint2d.rst b/classes/class_dampedspringjoint2d.rst index 0069a782a70..6f98b5657c7 100644 --- a/classes/class_dampedspringjoint2d.rst +++ b/classes/class_dampedspringjoint2d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/DampedSpringJoint2D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/DampedSpringJoint2D.xml. .. _class_DampedSpringJoint2D: diff --git a/classes/class_decal.rst b/classes/class_decal.rst index 7076acf53b6..0a68168984b 100644 --- a/classes/class_decal.rst +++ b/classes/class_decal.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Decal.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Decal.xml. .. _class_Decal: diff --git a/classes/class_dictionary.rst b/classes/class_dictionary.rst index 4dcdf6ea3c6..a78776a0b4a 100644 --- a/classes/class_dictionary.rst +++ b/classes/class_dictionary.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Dictionary.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Dictionary.xml. .. _class_Dictionary: diff --git a/classes/class_diraccess.rst b/classes/class_diraccess.rst index 5fff951cf2e..c546e7188a7 100644 --- a/classes/class_diraccess.rst +++ b/classes/class_diraccess.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/DirAccess.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/DirAccess.xml. .. _class_DirAccess: diff --git a/classes/class_directionallight2d.rst b/classes/class_directionallight2d.rst index 5d99424c311..7d87d0010bf 100644 --- a/classes/class_directionallight2d.rst +++ b/classes/class_directionallight2d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/DirectionalLight2D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/DirectionalLight2D.xml. .. _class_DirectionalLight2D: diff --git a/classes/class_directionallight3d.rst b/classes/class_directionallight3d.rst index 016497c4430..cd0eb352660 100644 --- a/classes/class_directionallight3d.rst +++ b/classes/class_directionallight3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/DirectionalLight3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/DirectionalLight3D.xml. .. _class_DirectionalLight3D: diff --git a/classes/class_displayserver.rst b/classes/class_displayserver.rst index 67f838da5b0..6dc268369b1 100644 --- a/classes/class_displayserver.rst +++ b/classes/class_displayserver.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/DisplayServer.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/DisplayServer.xml. .. _class_DisplayServer: diff --git a/classes/class_dtlsserver.rst b/classes/class_dtlsserver.rst index 08c1c0ef519..245a8640ec3 100644 --- a/classes/class_dtlsserver.rst +++ b/classes/class_dtlsserver.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/DTLSServer.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/DTLSServer.xml. .. _class_DTLSServer: diff --git a/classes/class_editorcommandpalette.rst b/classes/class_editorcommandpalette.rst index 5ff05a08400..1be0b8887cc 100644 --- a/classes/class_editorcommandpalette.rst +++ b/classes/class_editorcommandpalette.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/EditorCommandPalette.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/EditorCommandPalette.xml. .. _class_EditorCommandPalette: diff --git a/classes/class_editordebuggerplugin.rst b/classes/class_editordebuggerplugin.rst index 2f6f869ace7..043698ed449 100644 --- a/classes/class_editordebuggerplugin.rst +++ b/classes/class_editordebuggerplugin.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/EditorDebuggerPlugin.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/EditorDebuggerPlugin.xml. .. _class_EditorDebuggerPlugin: diff --git a/classes/class_editordebuggersession.rst b/classes/class_editordebuggersession.rst index 8e485aff00f..c333fe584cd 100644 --- a/classes/class_editordebuggersession.rst +++ b/classes/class_editordebuggersession.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/EditorDebuggerSession.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/EditorDebuggerSession.xml. .. _class_EditorDebuggerSession: diff --git a/classes/class_editorexportplatform.rst b/classes/class_editorexportplatform.rst index 7c3527cfa8d..36a14be028f 100644 --- a/classes/class_editorexportplatform.rst +++ b/classes/class_editorexportplatform.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/EditorExportPlatform.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/EditorExportPlatform.xml. .. _class_EditorExportPlatform: diff --git a/classes/class_editorexportplatformandroid.rst b/classes/class_editorexportplatformandroid.rst index 65dd29c0b75..f69deec7ae8 100644 --- a/classes/class_editorexportplatformandroid.rst +++ b/classes/class_editorexportplatformandroid.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/platform/android/doc_classes/EditorExportPlatformAndroid.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/platform/android/doc_classes/EditorExportPlatformAndroid.xml. .. _class_EditorExportPlatformAndroid: diff --git a/classes/class_editorexportplatformios.rst b/classes/class_editorexportplatformios.rst index f13e21f3ce5..72ec301871a 100644 --- a/classes/class_editorexportplatformios.rst +++ b/classes/class_editorexportplatformios.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/platform/ios/doc_classes/EditorExportPlatformIOS.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/platform/ios/doc_classes/EditorExportPlatformIOS.xml. .. _class_EditorExportPlatformIOS: diff --git a/classes/class_editorexportplatformlinuxbsd.rst b/classes/class_editorexportplatformlinuxbsd.rst index 7d1d33de8dc..4d4d41f7799 100644 --- a/classes/class_editorexportplatformlinuxbsd.rst +++ b/classes/class_editorexportplatformlinuxbsd.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/platform/linuxbsd/doc_classes/EditorExportPlatformLinuxBSD.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/platform/linuxbsd/doc_classes/EditorExportPlatformLinuxBSD.xml. .. _class_EditorExportPlatformLinuxBSD: diff --git a/classes/class_editorexportplatformmacos.rst b/classes/class_editorexportplatformmacos.rst index 051502f5768..5fdddf086ba 100644 --- a/classes/class_editorexportplatformmacos.rst +++ b/classes/class_editorexportplatformmacos.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/platform/macos/doc_classes/EditorExportPlatformMacOS.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/platform/macos/doc_classes/EditorExportPlatformMacOS.xml. .. _class_EditorExportPlatformMacOS: diff --git a/classes/class_editorexportplatformpc.rst b/classes/class_editorexportplatformpc.rst index e30e1e4d554..f5fd0b8f3b8 100644 --- a/classes/class_editorexportplatformpc.rst +++ b/classes/class_editorexportplatformpc.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/EditorExportPlatformPC.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/EditorExportPlatformPC.xml. .. _class_EditorExportPlatformPC: diff --git a/classes/class_editorexportplatformweb.rst b/classes/class_editorexportplatformweb.rst index 2f2f41ee0e3..59a82d59be1 100644 --- a/classes/class_editorexportplatformweb.rst +++ b/classes/class_editorexportplatformweb.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/platform/web/doc_classes/EditorExportPlatformWeb.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/platform/web/doc_classes/EditorExportPlatformWeb.xml. .. _class_EditorExportPlatformWeb: diff --git a/classes/class_editorexportplatformwindows.rst b/classes/class_editorexportplatformwindows.rst index 1ffcb1d4826..a163fd9345c 100644 --- a/classes/class_editorexportplatformwindows.rst +++ b/classes/class_editorexportplatformwindows.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/platform/windows/doc_classes/EditorExportPlatformWindows.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/platform/windows/doc_classes/EditorExportPlatformWindows.xml. .. _class_EditorExportPlatformWindows: diff --git a/classes/class_editorexportplugin.rst b/classes/class_editorexportplugin.rst index 77d4d60e3e0..de5537bda28 100644 --- a/classes/class_editorexportplugin.rst +++ b/classes/class_editorexportplugin.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/EditorExportPlugin.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/EditorExportPlugin.xml. .. _class_EditorExportPlugin: @@ -290,7 +290,9 @@ Return ``true``, if the result of :ref:`_get_export_options` path, :ref:`PackedByteArray` file, :ref:`bool` remap **)** -Adds a custom file to be exported. ``path`` is the virtual path that can be used to load the file, ``file`` is the binary data of the file. If ``remap`` is ``true``, file will not be exported, but instead remapped to the given ``path``. +Adds a custom file to be exported. ``path`` is the virtual path that can be used to load the file, ``file`` is the binary data of the file. + +When called inside :ref:`_export_file` and ``remap`` is ``true``, the current file will not be exported, but instead remapped to this custom file. ``remap`` is ignored when called in other places. .. rst-class:: classref-item-separator diff --git a/classes/class_editorfeatureprofile.rst b/classes/class_editorfeatureprofile.rst index bba6329a3af..6e2fa3ea331 100644 --- a/classes/class_editorfeatureprofile.rst +++ b/classes/class_editorfeatureprofile.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/EditorFeatureProfile.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/EditorFeatureProfile.xml. .. _class_EditorFeatureProfile: diff --git a/classes/class_editorfiledialog.rst b/classes/class_editorfiledialog.rst index 26f86148b2b..a6349d912c1 100644 --- a/classes/class_editorfiledialog.rst +++ b/classes/class_editorfiledialog.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/EditorFileDialog.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/EditorFileDialog.xml. .. _class_EditorFileDialog: diff --git a/classes/class_editorfilesystem.rst b/classes/class_editorfilesystem.rst index 288f0d67259..47e693b26f0 100644 --- a/classes/class_editorfilesystem.rst +++ b/classes/class_editorfilesystem.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/EditorFileSystem.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/EditorFileSystem.xml. .. _class_EditorFileSystem: diff --git a/classes/class_editorfilesystemdirectory.rst b/classes/class_editorfilesystemdirectory.rst index 273250b614e..59981de1172 100644 --- a/classes/class_editorfilesystemdirectory.rst +++ b/classes/class_editorfilesystemdirectory.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/EditorFileSystemDirectory.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/EditorFileSystemDirectory.xml. .. _class_EditorFileSystemDirectory: diff --git a/classes/class_editorfilesystemimportformatsupportquery.rst b/classes/class_editorfilesystemimportformatsupportquery.rst index 9e9c335f624..68f8346b2d2 100644 --- a/classes/class_editorfilesystemimportformatsupportquery.rst +++ b/classes/class_editorfilesystemimportformatsupportquery.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/EditorFileSystemImportFormatSupportQuery.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/EditorFileSystemImportFormatSupportQuery.xml. .. _class_EditorFileSystemImportFormatSupportQuery: diff --git a/classes/class_editorimportplugin.rst b/classes/class_editorimportplugin.rst index c3b34d8ab72..129c3923d36 100644 --- a/classes/class_editorimportplugin.rst +++ b/classes/class_editorimportplugin.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/EditorImportPlugin.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/EditorImportPlugin.xml. .. _class_EditorImportPlugin: diff --git a/classes/class_editorinspector.rst b/classes/class_editorinspector.rst index 6e2b29417d0..b197f13de29 100644 --- a/classes/class_editorinspector.rst +++ b/classes/class_editorinspector.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/EditorInspector.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/EditorInspector.xml. .. _class_EditorInspector: diff --git a/classes/class_editorinspectorplugin.rst b/classes/class_editorinspectorplugin.rst index 76c6baba090..5bb166da02f 100644 --- a/classes/class_editorinspectorplugin.rst +++ b/classes/class_editorinspectorplugin.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/EditorInspectorPlugin.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/EditorInspectorPlugin.xml. .. _class_EditorInspectorPlugin: diff --git a/classes/class_editorinterface.rst b/classes/class_editorinterface.rst index 05f420b85b5..bd9ae49e27b 100644 --- a/classes/class_editorinterface.rst +++ b/classes/class_editorinterface.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/EditorInterface.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/EditorInterface.xml. .. _class_EditorInterface: diff --git a/classes/class_editornode3dgizmo.rst b/classes/class_editornode3dgizmo.rst index f8af51d8e78..61e0d58729c 100644 --- a/classes/class_editornode3dgizmo.rst +++ b/classes/class_editornode3dgizmo.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/EditorNode3DGizmo.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/EditorNode3DGizmo.xml. .. _class_EditorNode3DGizmo: diff --git a/classes/class_editornode3dgizmoplugin.rst b/classes/class_editornode3dgizmoplugin.rst index e1e7c6f0193..e9131004634 100644 --- a/classes/class_editornode3dgizmoplugin.rst +++ b/classes/class_editornode3dgizmoplugin.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/EditorNode3DGizmoPlugin.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/EditorNode3DGizmoPlugin.xml. .. _class_EditorNode3DGizmoPlugin: diff --git a/classes/class_editorpaths.rst b/classes/class_editorpaths.rst index a8deebe48c4..6843757ccb6 100644 --- a/classes/class_editorpaths.rst +++ b/classes/class_editorpaths.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/EditorPaths.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/EditorPaths.xml. .. _class_EditorPaths: diff --git a/classes/class_editorplugin.rst b/classes/class_editorplugin.rst index b514b400bf6..031fad66c98 100644 --- a/classes/class_editorplugin.rst +++ b/classes/class_editorplugin.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/EditorPlugin.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/EditorPlugin.xml. .. _class_EditorPlugin: diff --git a/classes/class_editorproperty.rst b/classes/class_editorproperty.rst index 14f354e12f4..0e82c1bf773 100644 --- a/classes/class_editorproperty.rst +++ b/classes/class_editorproperty.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/EditorProperty.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/EditorProperty.xml. .. _class_EditorProperty: diff --git a/classes/class_editorresourceconversionplugin.rst b/classes/class_editorresourceconversionplugin.rst index 244d3a8cedb..e7fa74ccf7f 100644 --- a/classes/class_editorresourceconversionplugin.rst +++ b/classes/class_editorresourceconversionplugin.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/EditorResourceConversionPlugin.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/EditorResourceConversionPlugin.xml. .. _class_EditorResourceConversionPlugin: diff --git a/classes/class_editorresourcepicker.rst b/classes/class_editorresourcepicker.rst index 411c23f1cbf..5a72a0622bb 100644 --- a/classes/class_editorresourcepicker.rst +++ b/classes/class_editorresourcepicker.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/EditorResourcePicker.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/EditorResourcePicker.xml. .. _class_EditorResourcePicker: diff --git a/classes/class_editorresourcepreview.rst b/classes/class_editorresourcepreview.rst index 9baa8502ece..2f247edf467 100644 --- a/classes/class_editorresourcepreview.rst +++ b/classes/class_editorresourcepreview.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/EditorResourcePreview.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/EditorResourcePreview.xml. .. _class_EditorResourcePreview: diff --git a/classes/class_editorresourcepreviewgenerator.rst b/classes/class_editorresourcepreviewgenerator.rst index 546c4788ef7..8af875fe29a 100644 --- a/classes/class_editorresourcepreviewgenerator.rst +++ b/classes/class_editorresourcepreviewgenerator.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/EditorResourcePreviewGenerator.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/EditorResourcePreviewGenerator.xml. .. _class_EditorResourcePreviewGenerator: diff --git a/classes/class_editorresourcetooltipplugin.rst b/classes/class_editorresourcetooltipplugin.rst index afe1b0fa77c..8251e3ec7b6 100644 --- a/classes/class_editorresourcetooltipplugin.rst +++ b/classes/class_editorresourcetooltipplugin.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/EditorResourceTooltipPlugin.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/EditorResourceTooltipPlugin.xml. .. _class_EditorResourceTooltipPlugin: diff --git a/classes/class_editorsceneformatimporter.rst b/classes/class_editorsceneformatimporter.rst index 9845090ddd8..01f44e5ba98 100644 --- a/classes/class_editorsceneformatimporter.rst +++ b/classes/class_editorsceneformatimporter.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/EditorSceneFormatImporter.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/EditorSceneFormatImporter.xml. .. _class_EditorSceneFormatImporter: diff --git a/classes/class_editorsceneformatimporterblend.rst b/classes/class_editorsceneformatimporterblend.rst index cf4875a8a8d..e8f67c65d99 100644 --- a/classes/class_editorsceneformatimporterblend.rst +++ b/classes/class_editorsceneformatimporterblend.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/modules/gltf/doc_classes/EditorSceneFormatImporterBlend.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/modules/gltf/doc_classes/EditorSceneFormatImporterBlend.xml. .. _class_EditorSceneFormatImporterBlend: diff --git a/classes/class_editorsceneformatimporterfbx.rst b/classes/class_editorsceneformatimporterfbx.rst index d1ad78a1df3..660d9fd45a4 100644 --- a/classes/class_editorsceneformatimporterfbx.rst +++ b/classes/class_editorsceneformatimporterfbx.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/modules/gltf/doc_classes/EditorSceneFormatImporterFBX.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/modules/gltf/doc_classes/EditorSceneFormatImporterFBX.xml. .. _class_EditorSceneFormatImporterFBX: diff --git a/classes/class_editorsceneformatimportergltf.rst b/classes/class_editorsceneformatimportergltf.rst index ff958808b8d..bf0405930cf 100644 --- a/classes/class_editorsceneformatimportergltf.rst +++ b/classes/class_editorsceneformatimportergltf.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/modules/gltf/doc_classes/EditorSceneFormatImporterGLTF.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/modules/gltf/doc_classes/EditorSceneFormatImporterGLTF.xml. .. _class_EditorSceneFormatImporterGLTF: diff --git a/classes/class_editorscenepostimport.rst b/classes/class_editorscenepostimport.rst index 83fbf5537a4..ef47ae3bdae 100644 --- a/classes/class_editorscenepostimport.rst +++ b/classes/class_editorscenepostimport.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/EditorScenePostImport.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/EditorScenePostImport.xml. .. _class_EditorScenePostImport: diff --git a/classes/class_editorscenepostimportplugin.rst b/classes/class_editorscenepostimportplugin.rst index 8bf5b23b824..d3ac83aa800 100644 --- a/classes/class_editorscenepostimportplugin.rst +++ b/classes/class_editorscenepostimportplugin.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/EditorScenePostImportPlugin.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/EditorScenePostImportPlugin.xml. .. _class_EditorScenePostImportPlugin: diff --git a/classes/class_editorscript.rst b/classes/class_editorscript.rst index 8023455c71e..2f3a31840ad 100644 --- a/classes/class_editorscript.rst +++ b/classes/class_editorscript.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/EditorScript.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/EditorScript.xml. .. _class_EditorScript: diff --git a/classes/class_editorscriptpicker.rst b/classes/class_editorscriptpicker.rst index 860aff9d366..2bb868332d3 100644 --- a/classes/class_editorscriptpicker.rst +++ b/classes/class_editorscriptpicker.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/EditorScriptPicker.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/EditorScriptPicker.xml. .. _class_EditorScriptPicker: diff --git a/classes/class_editorselection.rst b/classes/class_editorselection.rst index 4d328222480..8fd5f79d0c8 100644 --- a/classes/class_editorselection.rst +++ b/classes/class_editorselection.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/EditorSelection.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/EditorSelection.xml. .. _class_EditorSelection: diff --git a/classes/class_editorsettings.rst b/classes/class_editorsettings.rst index cc9c199e83c..23a3756a6ac 100644 --- a/classes/class_editorsettings.rst +++ b/classes/class_editorsettings.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/EditorSettings.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/EditorSettings.xml. .. _class_EditorSettings: diff --git a/classes/class_editorspinslider.rst b/classes/class_editorspinslider.rst index 267c1ade6dc..11b93ab2487 100644 --- a/classes/class_editorspinslider.rst +++ b/classes/class_editorspinslider.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/EditorSpinSlider.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/EditorSpinSlider.xml. .. _class_EditorSpinSlider: diff --git a/classes/class_editorsyntaxhighlighter.rst b/classes/class_editorsyntaxhighlighter.rst index aad1fbef841..139b48dae90 100644 --- a/classes/class_editorsyntaxhighlighter.rst +++ b/classes/class_editorsyntaxhighlighter.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/EditorSyntaxHighlighter.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/EditorSyntaxHighlighter.xml. .. _class_EditorSyntaxHighlighter: diff --git a/classes/class_editortranslationparserplugin.rst b/classes/class_editortranslationparserplugin.rst index 0d6ee3ec769..63cbc240a9e 100644 --- a/classes/class_editortranslationparserplugin.rst +++ b/classes/class_editortranslationparserplugin.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/EditorTranslationParserPlugin.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/EditorTranslationParserPlugin.xml. .. _class_EditorTranslationParserPlugin: diff --git a/classes/class_editorundoredomanager.rst b/classes/class_editorundoredomanager.rst index 9b57fe36c6a..e6418bec754 100644 --- a/classes/class_editorundoredomanager.rst +++ b/classes/class_editorundoredomanager.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/EditorUndoRedoManager.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/EditorUndoRedoManager.xml. .. _class_EditorUndoRedoManager: diff --git a/classes/class_editorvcsinterface.rst b/classes/class_editorvcsinterface.rst index 39a5dd884a4..8eef732a38f 100644 --- a/classes/class_editorvcsinterface.rst +++ b/classes/class_editorvcsinterface.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/EditorVCSInterface.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/EditorVCSInterface.xml. .. _class_EditorVCSInterface: diff --git a/classes/class_encodedobjectasid.rst b/classes/class_encodedobjectasid.rst index 662dd39d5eb..8705a04f59c 100644 --- a/classes/class_encodedobjectasid.rst +++ b/classes/class_encodedobjectasid.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/EncodedObjectAsID.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/EncodedObjectAsID.xml. .. _class_EncodedObjectAsID: diff --git a/classes/class_enetconnection.rst b/classes/class_enetconnection.rst index 8e7c9b69eb0..6f5b26f0f95 100644 --- a/classes/class_enetconnection.rst +++ b/classes/class_enetconnection.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/modules/enet/doc_classes/ENetConnection.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/modules/enet/doc_classes/ENetConnection.xml. .. _class_ENetConnection: diff --git a/classes/class_enetmultiplayerpeer.rst b/classes/class_enetmultiplayerpeer.rst index 15d016ede4b..67eeed5c88a 100644 --- a/classes/class_enetmultiplayerpeer.rst +++ b/classes/class_enetmultiplayerpeer.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/modules/enet/doc_classes/ENetMultiplayerPeer.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/modules/enet/doc_classes/ENetMultiplayerPeer.xml. .. _class_ENetMultiplayerPeer: diff --git a/classes/class_enetpacketpeer.rst b/classes/class_enetpacketpeer.rst index 78755e1f9ca..895bcdc3d27 100644 --- a/classes/class_enetpacketpeer.rst +++ b/classes/class_enetpacketpeer.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/modules/enet/doc_classes/ENetPacketPeer.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/modules/enet/doc_classes/ENetPacketPeer.xml. .. _class_ENetPacketPeer: diff --git a/classes/class_engine.rst b/classes/class_engine.rst index 6052a3b06d5..ef19f83f220 100644 --- a/classes/class_engine.rst +++ b/classes/class_engine.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Engine.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Engine.xml. .. _class_Engine: @@ -243,7 +243,7 @@ Method Descriptions :ref:`String` **get_architecture_name** **(** **)** |const| -Returns the name of the CPU architecture the Godot binary was built for. Possible return values are ``x86_64``, ``x86_32``, ``arm64``, ``armv7``, ``rv64``, ``riscv``, ``ppc64``, ``ppc``, ``wasm64`` and ``wasm32``. +Returns the name of the CPU architecture the Godot binary was built for. Possible return values are ``x86_64``, ``x86_32``, ``arm64``, ``arm32``, ``rv64``, ``riscv``, ``ppc64``, ``ppc``, ``wasm64`` and ``wasm32``. To detect whether the current CPU architecture is 64-bit, you can use the fact that all 64-bit architecture names have ``64`` in their name: @@ -253,16 +253,16 @@ To detect whether the current CPU architecture is 64-bit, you can use the fact t .. code-tab:: gdscript if "64" in Engine.get_architecture_name(): - print("Running on 64-bit CPU.") + print("Running a 64-bit build of Godot.") else: - print("Running on 32-bit CPU.") + print("Running a 32-bit build of Godot.") .. code-tab:: csharp if (Engine.GetArchitectureName().Contains("64")) - GD.Print("Running on 64-bit CPU."); + GD.Print("Running a 64-bit build of Godot."); else - GD.Print("Running on 32-bit CPU."); + GD.Print("Running a 32-bit build of Godot."); diff --git a/classes/class_enginedebugger.rst b/classes/class_enginedebugger.rst index f0c828bbde0..0e07457c203 100644 --- a/classes/class_enginedebugger.rst +++ b/classes/class_enginedebugger.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/EngineDebugger.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/EngineDebugger.xml. .. _class_EngineDebugger: diff --git a/classes/class_engineprofiler.rst b/classes/class_engineprofiler.rst index 41832afc135..33eb2fd9aa1 100644 --- a/classes/class_engineprofiler.rst +++ b/classes/class_engineprofiler.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/EngineProfiler.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/EngineProfiler.xml. .. _class_EngineProfiler: diff --git a/classes/class_environment.rst b/classes/class_environment.rst index 2eceb95b333..cecf58fcd4e 100644 --- a/classes/class_environment.rst +++ b/classes/class_environment.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Environment.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Environment.xml. .. _class_Environment: diff --git a/classes/class_expression.rst b/classes/class_expression.rst index 1345418df1a..a032786e476 100644 --- a/classes/class_expression.rst +++ b/classes/class_expression.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Expression.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Expression.xml. .. _class_Expression: diff --git a/classes/class_fastnoiselite.rst b/classes/class_fastnoiselite.rst index 90416f42aa7..58dc67d7d42 100644 --- a/classes/class_fastnoiselite.rst +++ b/classes/class_fastnoiselite.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/modules/noise/doc_classes/FastNoiseLite.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/modules/noise/doc_classes/FastNoiseLite.xml. .. _class_FastNoiseLite: diff --git a/classes/class_fileaccess.rst b/classes/class_fileaccess.rst index ad721e3418f..14c449da15c 100644 --- a/classes/class_fileaccess.rst +++ b/classes/class_fileaccess.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/FileAccess.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/FileAccess.xml. .. _class_FileAccess: diff --git a/classes/class_filedialog.rst b/classes/class_filedialog.rst index 3c4427bc4f1..927951e837d 100644 --- a/classes/class_filedialog.rst +++ b/classes/class_filedialog.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/FileDialog.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/FileDialog.xml. .. _class_FileDialog: diff --git a/classes/class_filesystemdock.rst b/classes/class_filesystemdock.rst index 2f9f4f8d32a..69bda2f23b5 100644 --- a/classes/class_filesystemdock.rst +++ b/classes/class_filesystemdock.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/FileSystemDock.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/FileSystemDock.xml. .. _class_FileSystemDock: diff --git a/classes/class_float.rst b/classes/class_float.rst index df14c36d046..a5f5e970fce 100644 --- a/classes/class_float.rst +++ b/classes/class_float.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/float.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/float.xml. .. _class_float: diff --git a/classes/class_flowcontainer.rst b/classes/class_flowcontainer.rst index f1102e108ed..b70fb6d7b0a 100644 --- a/classes/class_flowcontainer.rst +++ b/classes/class_flowcontainer.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/FlowContainer.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/FlowContainer.xml. .. _class_FlowContainer: diff --git a/classes/class_fogmaterial.rst b/classes/class_fogmaterial.rst index cc31a781e83..4798f25f0df 100644 --- a/classes/class_fogmaterial.rst +++ b/classes/class_fogmaterial.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/FogMaterial.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/FogMaterial.xml. .. _class_FogMaterial: diff --git a/classes/class_fogvolume.rst b/classes/class_fogvolume.rst index 768fd3e637e..c8a97321196 100644 --- a/classes/class_fogvolume.rst +++ b/classes/class_fogvolume.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/FogVolume.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/FogVolume.xml. .. _class_FogVolume: diff --git a/classes/class_font.rst b/classes/class_font.rst index 797ba1fa1d8..72017e54721 100644 --- a/classes/class_font.rst +++ b/classes/class_font.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Font.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Font.xml. .. _class_Font: diff --git a/classes/class_fontfile.rst b/classes/class_fontfile.rst index a3b5fdd94f5..dd23f5e70d6 100644 --- a/classes/class_fontfile.rst +++ b/classes/class_fontfile.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/FontFile.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/FontFile.xml. .. _class_FontFile: diff --git a/classes/class_fontvariation.rst b/classes/class_fontvariation.rst index a6c8cbab1b1..1baf6325f0e 100644 --- a/classes/class_fontvariation.rst +++ b/classes/class_fontvariation.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/FontVariation.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/FontVariation.xml. .. _class_FontVariation: diff --git a/classes/class_gdextension.rst b/classes/class_gdextension.rst index 2b6cf2dfeec..c408dd5ad35 100644 --- a/classes/class_gdextension.rst +++ b/classes/class_gdextension.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/GDExtension.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/GDExtension.xml. .. _class_GDExtension: diff --git a/classes/class_gdextensionmanager.rst b/classes/class_gdextensionmanager.rst index 7d0d47758a6..92b31796000 100644 --- a/classes/class_gdextensionmanager.rst +++ b/classes/class_gdextensionmanager.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/GDExtensionManager.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/GDExtensionManager.xml. .. _class_GDExtensionManager: diff --git a/classes/class_gdscript.rst b/classes/class_gdscript.rst index e40c0ea8360..914b2cf0d33 100644 --- a/classes/class_gdscript.rst +++ b/classes/class_gdscript.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/modules/gdscript/doc_classes/GDScript.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/modules/gdscript/doc_classes/GDScript.xml. .. _class_GDScript: diff --git a/classes/class_generic6dofjoint3d.rst b/classes/class_generic6dofjoint3d.rst index 8d623aa460b..03c8690e33e 100644 --- a/classes/class_generic6dofjoint3d.rst +++ b/classes/class_generic6dofjoint3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Generic6DOFJoint3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Generic6DOFJoint3D.xml. .. _class_Generic6DOFJoint3D: diff --git a/classes/class_geometry2d.rst b/classes/class_geometry2d.rst index c7c2604d68c..1fe22747e4c 100644 --- a/classes/class_geometry2d.rst +++ b/classes/class_geometry2d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Geometry2D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Geometry2D.xml. .. _class_Geometry2D: diff --git a/classes/class_geometry3d.rst b/classes/class_geometry3d.rst index 749414a9819..6f9ec58b420 100644 --- a/classes/class_geometry3d.rst +++ b/classes/class_geometry3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Geometry3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Geometry3D.xml. .. _class_Geometry3D: diff --git a/classes/class_geometryinstance3d.rst b/classes/class_geometryinstance3d.rst index 089fdfeeb46..990f98181c4 100644 --- a/classes/class_geometryinstance3d.rst +++ b/classes/class_geometryinstance3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/GeometryInstance3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/GeometryInstance3D.xml. .. _class_GeometryInstance3D: diff --git a/classes/class_gltfaccessor.rst b/classes/class_gltfaccessor.rst index 4bf79eebd9c..03d09381406 100644 --- a/classes/class_gltfaccessor.rst +++ b/classes/class_gltfaccessor.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/modules/gltf/doc_classes/GLTFAccessor.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/modules/gltf/doc_classes/GLTFAccessor.xml. .. _class_GLTFAccessor: diff --git a/classes/class_gltfanimation.rst b/classes/class_gltfanimation.rst index cf88430f2a4..a8e8de5148b 100644 --- a/classes/class_gltfanimation.rst +++ b/classes/class_gltfanimation.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/modules/gltf/doc_classes/GLTFAnimation.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/modules/gltf/doc_classes/GLTFAnimation.xml. .. _class_GLTFAnimation: diff --git a/classes/class_gltfbufferview.rst b/classes/class_gltfbufferview.rst index 054fd1f9da0..c1ea7299a5b 100644 --- a/classes/class_gltfbufferview.rst +++ b/classes/class_gltfbufferview.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/modules/gltf/doc_classes/GLTFBufferView.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/modules/gltf/doc_classes/GLTFBufferView.xml. .. _class_GLTFBufferView: diff --git a/classes/class_gltfcamera.rst b/classes/class_gltfcamera.rst index dfd15f1ca9a..9f10634bc4d 100644 --- a/classes/class_gltfcamera.rst +++ b/classes/class_gltfcamera.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/modules/gltf/doc_classes/GLTFCamera.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/modules/gltf/doc_classes/GLTFCamera.xml. .. _class_GLTFCamera: diff --git a/classes/class_gltfdocument.rst b/classes/class_gltfdocument.rst index 68aff7c049a..f87107046da 100644 --- a/classes/class_gltfdocument.rst +++ b/classes/class_gltfdocument.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/modules/gltf/doc_classes/GLTFDocument.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/modules/gltf/doc_classes/GLTFDocument.xml. .. _class_GLTFDocument: diff --git a/classes/class_gltfdocumentextension.rst b/classes/class_gltfdocumentextension.rst index 3f3e4792878..832ccd9328e 100644 --- a/classes/class_gltfdocumentextension.rst +++ b/classes/class_gltfdocumentextension.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/modules/gltf/doc_classes/GLTFDocumentExtension.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/modules/gltf/doc_classes/GLTFDocumentExtension.xml. .. _class_GLTFDocumentExtension: diff --git a/classes/class_gltfdocumentextensionconvertimportermesh.rst b/classes/class_gltfdocumentextensionconvertimportermesh.rst index 2af7845a342..83febbf6d8c 100644 --- a/classes/class_gltfdocumentextensionconvertimportermesh.rst +++ b/classes/class_gltfdocumentextensionconvertimportermesh.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/modules/gltf/doc_classes/GLTFDocumentExtensionConvertImporterMesh.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/modules/gltf/doc_classes/GLTFDocumentExtensionConvertImporterMesh.xml. .. _class_GLTFDocumentExtensionConvertImporterMesh: diff --git a/classes/class_gltflight.rst b/classes/class_gltflight.rst index 20805938cb0..bb164b942e3 100644 --- a/classes/class_gltflight.rst +++ b/classes/class_gltflight.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/modules/gltf/doc_classes/GLTFLight.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/modules/gltf/doc_classes/GLTFLight.xml. .. _class_GLTFLight: diff --git a/classes/class_gltfmesh.rst b/classes/class_gltfmesh.rst index 1aa58a6267a..0de8fa76624 100644 --- a/classes/class_gltfmesh.rst +++ b/classes/class_gltfmesh.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/modules/gltf/doc_classes/GLTFMesh.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/modules/gltf/doc_classes/GLTFMesh.xml. .. _class_GLTFMesh: diff --git a/classes/class_gltfnode.rst b/classes/class_gltfnode.rst index 2a6dde37f50..110e379cd12 100644 --- a/classes/class_gltfnode.rst +++ b/classes/class_gltfnode.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/modules/gltf/doc_classes/GLTFNode.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/modules/gltf/doc_classes/GLTFNode.xml. .. _class_GLTFNode: diff --git a/classes/class_gltfphysicsbody.rst b/classes/class_gltfphysicsbody.rst index 750467d00a3..88a6ebe3fc8 100644 --- a/classes/class_gltfphysicsbody.rst +++ b/classes/class_gltfphysicsbody.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/modules/gltf/doc_classes/GLTFPhysicsBody.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/modules/gltf/doc_classes/GLTFPhysicsBody.xml. .. _class_GLTFPhysicsBody: diff --git a/classes/class_gltfphysicsshape.rst b/classes/class_gltfphysicsshape.rst index 5c9a8a08a5a..d78dda9fd97 100644 --- a/classes/class_gltfphysicsshape.rst +++ b/classes/class_gltfphysicsshape.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/modules/gltf/doc_classes/GLTFPhysicsShape.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/modules/gltf/doc_classes/GLTFPhysicsShape.xml. .. _class_GLTFPhysicsShape: diff --git a/classes/class_gltfskeleton.rst b/classes/class_gltfskeleton.rst index 1aa46311175..9cd558f8a96 100644 --- a/classes/class_gltfskeleton.rst +++ b/classes/class_gltfskeleton.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/modules/gltf/doc_classes/GLTFSkeleton.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/modules/gltf/doc_classes/GLTFSkeleton.xml. .. _class_GLTFSkeleton: diff --git a/classes/class_gltfskin.rst b/classes/class_gltfskin.rst index 868b66c4b0f..85ada135223 100644 --- a/classes/class_gltfskin.rst +++ b/classes/class_gltfskin.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/modules/gltf/doc_classes/GLTFSkin.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/modules/gltf/doc_classes/GLTFSkin.xml. .. _class_GLTFSkin: diff --git a/classes/class_gltfspecgloss.rst b/classes/class_gltfspecgloss.rst index 9afdb215cb8..93ad1b4dc7e 100644 --- a/classes/class_gltfspecgloss.rst +++ b/classes/class_gltfspecgloss.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/modules/gltf/doc_classes/GLTFSpecGloss.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/modules/gltf/doc_classes/GLTFSpecGloss.xml. .. _class_GLTFSpecGloss: diff --git a/classes/class_gltfstate.rst b/classes/class_gltfstate.rst index 649bd9493b6..2adbda3f5ab 100644 --- a/classes/class_gltfstate.rst +++ b/classes/class_gltfstate.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/modules/gltf/doc_classes/GLTFState.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/modules/gltf/doc_classes/GLTFState.xml. .. _class_GLTFState: diff --git a/classes/class_gltftexture.rst b/classes/class_gltftexture.rst index d33b2264fa5..9e27db0536b 100644 --- a/classes/class_gltftexture.rst +++ b/classes/class_gltftexture.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/modules/gltf/doc_classes/GLTFTexture.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/modules/gltf/doc_classes/GLTFTexture.xml. .. _class_GLTFTexture: diff --git a/classes/class_gltftexturesampler.rst b/classes/class_gltftexturesampler.rst index 9eebd5254e9..8da4b354b21 100644 --- a/classes/class_gltftexturesampler.rst +++ b/classes/class_gltftexturesampler.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/modules/gltf/doc_classes/GLTFTextureSampler.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/modules/gltf/doc_classes/GLTFTextureSampler.xml. .. _class_GLTFTextureSampler: diff --git a/classes/class_godotsharp.rst b/classes/class_godotsharp.rst index a47a343df0e..58b5eda2da9 100644 --- a/classes/class_godotsharp.rst +++ b/classes/class_godotsharp.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/modules/mono/doc_classes/GodotSharp.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/modules/mono/doc_classes/GodotSharp.xml. .. _class_GodotSharp: diff --git a/classes/class_gpuparticles2d.rst b/classes/class_gpuparticles2d.rst index 25c98fb0188..bfad243af47 100644 --- a/classes/class_gpuparticles2d.rst +++ b/classes/class_gpuparticles2d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/GPUParticles2D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/GPUParticles2D.xml. .. _class_GPUParticles2D: diff --git a/classes/class_gpuparticles3d.rst b/classes/class_gpuparticles3d.rst index 2c81809e851..edc220e0b6a 100644 --- a/classes/class_gpuparticles3d.rst +++ b/classes/class_gpuparticles3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/GPUParticles3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/GPUParticles3D.xml. .. _class_GPUParticles3D: diff --git a/classes/class_gpuparticlesattractor3d.rst b/classes/class_gpuparticlesattractor3d.rst index ac82e9798d2..b3493fa0950 100644 --- a/classes/class_gpuparticlesattractor3d.rst +++ b/classes/class_gpuparticlesattractor3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/GPUParticlesAttractor3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/GPUParticlesAttractor3D.xml. .. _class_GPUParticlesAttractor3D: diff --git a/classes/class_gpuparticlesattractorbox3d.rst b/classes/class_gpuparticlesattractorbox3d.rst index 4529f82f8ae..a613d47dcb3 100644 --- a/classes/class_gpuparticlesattractorbox3d.rst +++ b/classes/class_gpuparticlesattractorbox3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/GPUParticlesAttractorBox3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/GPUParticlesAttractorBox3D.xml. .. _class_GPUParticlesAttractorBox3D: diff --git a/classes/class_gpuparticlesattractorsphere3d.rst b/classes/class_gpuparticlesattractorsphere3d.rst index e9a8371e17d..f25263cf706 100644 --- a/classes/class_gpuparticlesattractorsphere3d.rst +++ b/classes/class_gpuparticlesattractorsphere3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/GPUParticlesAttractorSphere3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/GPUParticlesAttractorSphere3D.xml. .. _class_GPUParticlesAttractorSphere3D: diff --git a/classes/class_gpuparticlesattractorvectorfield3d.rst b/classes/class_gpuparticlesattractorvectorfield3d.rst index 139881f005f..97a720f20d7 100644 --- a/classes/class_gpuparticlesattractorvectorfield3d.rst +++ b/classes/class_gpuparticlesattractorvectorfield3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/GPUParticlesAttractorVectorField3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/GPUParticlesAttractorVectorField3D.xml. .. _class_GPUParticlesAttractorVectorField3D: diff --git a/classes/class_gpuparticlescollision3d.rst b/classes/class_gpuparticlescollision3d.rst index 557c015955c..ff272ec1b22 100644 --- a/classes/class_gpuparticlescollision3d.rst +++ b/classes/class_gpuparticlescollision3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/GPUParticlesCollision3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/GPUParticlesCollision3D.xml. .. _class_GPUParticlesCollision3D: diff --git a/classes/class_gpuparticlescollisionbox3d.rst b/classes/class_gpuparticlescollisionbox3d.rst index c0624ea0887..f4d58c575b4 100644 --- a/classes/class_gpuparticlescollisionbox3d.rst +++ b/classes/class_gpuparticlescollisionbox3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/GPUParticlesCollisionBox3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/GPUParticlesCollisionBox3D.xml. .. _class_GPUParticlesCollisionBox3D: diff --git a/classes/class_gpuparticlescollisionheightfield3d.rst b/classes/class_gpuparticlescollisionheightfield3d.rst index 8722f06c541..a7592315fde 100644 --- a/classes/class_gpuparticlescollisionheightfield3d.rst +++ b/classes/class_gpuparticlescollisionheightfield3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/GPUParticlesCollisionHeightField3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/GPUParticlesCollisionHeightField3D.xml. .. _class_GPUParticlesCollisionHeightField3D: diff --git a/classes/class_gpuparticlescollisionsdf3d.rst b/classes/class_gpuparticlescollisionsdf3d.rst index 8f3ca73d272..131de901436 100644 --- a/classes/class_gpuparticlescollisionsdf3d.rst +++ b/classes/class_gpuparticlescollisionsdf3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/GPUParticlesCollisionSDF3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/GPUParticlesCollisionSDF3D.xml. .. _class_GPUParticlesCollisionSDF3D: diff --git a/classes/class_gpuparticlescollisionsphere3d.rst b/classes/class_gpuparticlescollisionsphere3d.rst index b0a1a446152..c6a60c4ad54 100644 --- a/classes/class_gpuparticlescollisionsphere3d.rst +++ b/classes/class_gpuparticlescollisionsphere3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/GPUParticlesCollisionSphere3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/GPUParticlesCollisionSphere3D.xml. .. _class_GPUParticlesCollisionSphere3D: diff --git a/classes/class_gradient.rst b/classes/class_gradient.rst index 4e53cc06ead..40c1ce35919 100644 --- a/classes/class_gradient.rst +++ b/classes/class_gradient.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Gradient.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Gradient.xml. .. _class_Gradient: @@ -164,6 +164,8 @@ Property Descriptions Gradient's colors returned as a :ref:`PackedColorArray`. +\ **Note:** This property returns a copy, modifying the return value does not update the gradient. To update the gradient use :ref:`set_color` method (for updating colors individually) or assign to this property directly (for bulk-updating all colors at once). + .. rst-class:: classref-item-separator ---- @@ -217,6 +219,8 @@ The algorithm used to interpolate between points of the gradient. See :ref:`Inte Gradient's offsets returned as a :ref:`PackedFloat32Array`. +\ **Note:** This property returns a copy, modifying the return value does not update the gradient. To update the gradient use :ref:`set_offset` method (for updating offsets individually) or assign to this property directly (for bulk-updating all offsets at once). + .. rst-class:: classref-section-separator ---- diff --git a/classes/class_gradienttexture1d.rst b/classes/class_gradienttexture1d.rst index f8656b09aca..08646ee7058 100644 --- a/classes/class_gradienttexture1d.rst +++ b/classes/class_gradienttexture1d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/GradientTexture1D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/GradientTexture1D.xml. .. _class_GradientTexture1D: diff --git a/classes/class_gradienttexture2d.rst b/classes/class_gradienttexture2d.rst index cab7f6fec6d..fb7387fb2f9 100644 --- a/classes/class_gradienttexture2d.rst +++ b/classes/class_gradienttexture2d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/GradientTexture2D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/GradientTexture2D.xml. .. _class_GradientTexture2D: diff --git a/classes/class_graphedit.rst b/classes/class_graphedit.rst index fcfccc9624f..14e0d72e466 100644 --- a/classes/class_graphedit.rst +++ b/classes/class_graphedit.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/GraphEdit.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/GraphEdit.xml. .. _class_GraphEdit: diff --git a/classes/class_graphnode.rst b/classes/class_graphnode.rst index 1fecad97904..0057d4cae84 100644 --- a/classes/class_graphnode.rst +++ b/classes/class_graphnode.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/GraphNode.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/GraphNode.xml. .. _class_GraphNode: diff --git a/classes/class_gridcontainer.rst b/classes/class_gridcontainer.rst index 5d914852a58..1da8a8f7220 100644 --- a/classes/class_gridcontainer.rst +++ b/classes/class_gridcontainer.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/GridContainer.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/GridContainer.xml. .. _class_GridContainer: diff --git a/classes/class_gridmap.rst b/classes/class_gridmap.rst index 36f63bc0cf4..e384e952daf 100644 --- a/classes/class_gridmap.rst +++ b/classes/class_gridmap.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/modules/gridmap/doc_classes/GridMap.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/modules/gridmap/doc_classes/GridMap.xml. .. _class_GridMap: diff --git a/classes/class_groovejoint2d.rst b/classes/class_groovejoint2d.rst index 141e85de6ee..c51fc5c80c8 100644 --- a/classes/class_groovejoint2d.rst +++ b/classes/class_groovejoint2d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/GrooveJoint2D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/GrooveJoint2D.xml. .. _class_GrooveJoint2D: diff --git a/classes/class_hashingcontext.rst b/classes/class_hashingcontext.rst index d20520a104a..1b61a664d94 100644 --- a/classes/class_hashingcontext.rst +++ b/classes/class_hashingcontext.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/HashingContext.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/HashingContext.xml. .. _class_HashingContext: diff --git a/classes/class_hboxcontainer.rst b/classes/class_hboxcontainer.rst index d6c59622bcd..efedba7fe07 100644 --- a/classes/class_hboxcontainer.rst +++ b/classes/class_hboxcontainer.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/HBoxContainer.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/HBoxContainer.xml. .. _class_HBoxContainer: diff --git a/classes/class_heightmapshape3d.rst b/classes/class_heightmapshape3d.rst index 1f9c6296221..b24800b1839 100644 --- a/classes/class_heightmapshape3d.rst +++ b/classes/class_heightmapshape3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/HeightMapShape3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/HeightMapShape3D.xml. .. _class_HeightMapShape3D: diff --git a/classes/class_hflowcontainer.rst b/classes/class_hflowcontainer.rst index fbcadf8cd43..75df94de6b4 100644 --- a/classes/class_hflowcontainer.rst +++ b/classes/class_hflowcontainer.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/HFlowContainer.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/HFlowContainer.xml. .. _class_HFlowContainer: diff --git a/classes/class_hingejoint3d.rst b/classes/class_hingejoint3d.rst index a98df7aa472..cfeac824dbd 100644 --- a/classes/class_hingejoint3d.rst +++ b/classes/class_hingejoint3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/HingeJoint3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/HingeJoint3D.xml. .. _class_HingeJoint3D: diff --git a/classes/class_hmaccontext.rst b/classes/class_hmaccontext.rst index 484a5e57540..ed737f732f6 100644 --- a/classes/class_hmaccontext.rst +++ b/classes/class_hmaccontext.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/HMACContext.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/HMACContext.xml. .. _class_HMACContext: diff --git a/classes/class_hscrollbar.rst b/classes/class_hscrollbar.rst index 3c07f424060..4fcaa94bbf8 100644 --- a/classes/class_hscrollbar.rst +++ b/classes/class_hscrollbar.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/HScrollBar.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/HScrollBar.xml. .. _class_HScrollBar: diff --git a/classes/class_hseparator.rst b/classes/class_hseparator.rst index e578d6f9248..8d6fd6bca0a 100644 --- a/classes/class_hseparator.rst +++ b/classes/class_hseparator.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/HSeparator.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/HSeparator.xml. .. _class_HSeparator: diff --git a/classes/class_hslider.rst b/classes/class_hslider.rst index 041e05d064d..acfc4032d92 100644 --- a/classes/class_hslider.rst +++ b/classes/class_hslider.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/HSlider.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/HSlider.xml. .. _class_HSlider: diff --git a/classes/class_hsplitcontainer.rst b/classes/class_hsplitcontainer.rst index ee83a862493..01a2d2ab07f 100644 --- a/classes/class_hsplitcontainer.rst +++ b/classes/class_hsplitcontainer.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/HSplitContainer.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/HSplitContainer.xml. .. _class_HSplitContainer: diff --git a/classes/class_httpclient.rst b/classes/class_httpclient.rst index baa575bd4e6..7d4f2d81825 100644 --- a/classes/class_httpclient.rst +++ b/classes/class_httpclient.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/HTTPClient.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/HTTPClient.xml. .. _class_HTTPClient: diff --git a/classes/class_httprequest.rst b/classes/class_httprequest.rst index a7c4c0d66ce..c922c801378 100644 --- a/classes/class_httprequest.rst +++ b/classes/class_httprequest.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/HTTPRequest.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/HTTPRequest.xml. .. _class_HTTPRequest: diff --git a/classes/class_image.rst b/classes/class_image.rst index fdf08ff56a2..5f00f9c05a5 100644 --- a/classes/class_image.rst +++ b/classes/class_image.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Image.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Image.xml. .. _class_Image: diff --git a/classes/class_imageformatloader.rst b/classes/class_imageformatloader.rst index 19a9142f9c6..0a36257bed5 100644 --- a/classes/class_imageformatloader.rst +++ b/classes/class_imageformatloader.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/ImageFormatLoader.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/ImageFormatLoader.xml. .. _class_ImageFormatLoader: diff --git a/classes/class_imageformatloaderextension.rst b/classes/class_imageformatloaderextension.rst index f56d522fb89..6248852839a 100644 --- a/classes/class_imageformatloaderextension.rst +++ b/classes/class_imageformatloaderextension.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/ImageFormatLoaderExtension.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/ImageFormatLoaderExtension.xml. .. _class_ImageFormatLoaderExtension: diff --git a/classes/class_imagetexture.rst b/classes/class_imagetexture.rst index ba21eb26aaa..109d1084334 100644 --- a/classes/class_imagetexture.rst +++ b/classes/class_imagetexture.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/ImageTexture.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/ImageTexture.xml. .. _class_ImageTexture: diff --git a/classes/class_imagetexture3d.rst b/classes/class_imagetexture3d.rst index 9a7f9873c05..2816ea1e418 100644 --- a/classes/class_imagetexture3d.rst +++ b/classes/class_imagetexture3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/ImageTexture3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/ImageTexture3D.xml. .. _class_ImageTexture3D: diff --git a/classes/class_imagetexturelayered.rst b/classes/class_imagetexturelayered.rst index 7de2a95def2..f5d9104c0ea 100644 --- a/classes/class_imagetexturelayered.rst +++ b/classes/class_imagetexturelayered.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/ImageTextureLayered.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/ImageTextureLayered.xml. .. _class_ImageTextureLayered: diff --git a/classes/class_immediatemesh.rst b/classes/class_immediatemesh.rst index 2ab241c87dc..d688ee86b5b 100644 --- a/classes/class_immediatemesh.rst +++ b/classes/class_immediatemesh.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/ImmediateMesh.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/ImmediateMesh.xml. .. _class_ImmediateMesh: diff --git a/classes/class_importermesh.rst b/classes/class_importermesh.rst index 637190c926a..15305e23808 100644 --- a/classes/class_importermesh.rst +++ b/classes/class_importermesh.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/ImporterMesh.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/ImporterMesh.xml. .. _class_ImporterMesh: diff --git a/classes/class_importermeshinstance3d.rst b/classes/class_importermeshinstance3d.rst index 805b639bf69..bcd47dfbd17 100644 --- a/classes/class_importermeshinstance3d.rst +++ b/classes/class_importermeshinstance3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/ImporterMeshInstance3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/ImporterMeshInstance3D.xml. .. _class_ImporterMeshInstance3D: diff --git a/classes/class_input.rst b/classes/class_input.rst index 0944eaeeb0f..432ee6d58be 100644 --- a/classes/class_input.rst +++ b/classes/class_input.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Input.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Input.xml. .. _class_Input: diff --git a/classes/class_inputevent.rst b/classes/class_inputevent.rst index a93c14f6a54..14efd285376 100644 --- a/classes/class_inputevent.rst +++ b/classes/class_inputevent.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/InputEvent.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/InputEvent.xml. .. _class_InputEvent: diff --git a/classes/class_inputeventaction.rst b/classes/class_inputeventaction.rst index 647ab128a1e..e4cd97fa97e 100644 --- a/classes/class_inputeventaction.rst +++ b/classes/class_inputeventaction.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/InputEventAction.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/InputEventAction.xml. .. _class_InputEventAction: diff --git a/classes/class_inputeventfromwindow.rst b/classes/class_inputeventfromwindow.rst index 063ee5c0260..60d2bfeaa39 100644 --- a/classes/class_inputeventfromwindow.rst +++ b/classes/class_inputeventfromwindow.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/InputEventFromWindow.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/InputEventFromWindow.xml. .. _class_InputEventFromWindow: diff --git a/classes/class_inputeventgesture.rst b/classes/class_inputeventgesture.rst index dfc65d61c18..5683831ab84 100644 --- a/classes/class_inputeventgesture.rst +++ b/classes/class_inputeventgesture.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/InputEventGesture.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/InputEventGesture.xml. .. _class_InputEventGesture: diff --git a/classes/class_inputeventjoypadbutton.rst b/classes/class_inputeventjoypadbutton.rst index ba3001a3d16..e2e96907907 100644 --- a/classes/class_inputeventjoypadbutton.rst +++ b/classes/class_inputeventjoypadbutton.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/InputEventJoypadButton.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/InputEventJoypadButton.xml. .. _class_InputEventJoypadButton: diff --git a/classes/class_inputeventjoypadmotion.rst b/classes/class_inputeventjoypadmotion.rst index c207962cfee..431b6b3e8f5 100644 --- a/classes/class_inputeventjoypadmotion.rst +++ b/classes/class_inputeventjoypadmotion.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/InputEventJoypadMotion.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/InputEventJoypadMotion.xml. .. _class_InputEventJoypadMotion: diff --git a/classes/class_inputeventkey.rst b/classes/class_inputeventkey.rst index 4823f4615f8..64ae9187ac6 100644 --- a/classes/class_inputeventkey.rst +++ b/classes/class_inputeventkey.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/InputEventKey.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/InputEventKey.xml. .. _class_InputEventKey: diff --git a/classes/class_inputeventmagnifygesture.rst b/classes/class_inputeventmagnifygesture.rst index fd1b82ec101..6e6a5f54034 100644 --- a/classes/class_inputeventmagnifygesture.rst +++ b/classes/class_inputeventmagnifygesture.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/InputEventMagnifyGesture.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/InputEventMagnifyGesture.xml. .. _class_InputEventMagnifyGesture: diff --git a/classes/class_inputeventmidi.rst b/classes/class_inputeventmidi.rst index 901b5215869..f1baac0894d 100644 --- a/classes/class_inputeventmidi.rst +++ b/classes/class_inputeventmidi.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/InputEventMIDI.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/InputEventMIDI.xml. .. _class_InputEventMIDI: diff --git a/classes/class_inputeventmouse.rst b/classes/class_inputeventmouse.rst index cb9152f196c..9d612dcf1de 100644 --- a/classes/class_inputeventmouse.rst +++ b/classes/class_inputeventmouse.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/InputEventMouse.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/InputEventMouse.xml. .. _class_InputEventMouse: diff --git a/classes/class_inputeventmousebutton.rst b/classes/class_inputeventmousebutton.rst index fa3f8c3b6a9..1ff57923dc4 100644 --- a/classes/class_inputeventmousebutton.rst +++ b/classes/class_inputeventmousebutton.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/InputEventMouseButton.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/InputEventMouseButton.xml. .. _class_InputEventMouseButton: diff --git a/classes/class_inputeventmousemotion.rst b/classes/class_inputeventmousemotion.rst index aba8239dbeb..d682e8a8290 100644 --- a/classes/class_inputeventmousemotion.rst +++ b/classes/class_inputeventmousemotion.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/InputEventMouseMotion.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/InputEventMouseMotion.xml. .. _class_InputEventMouseMotion: diff --git a/classes/class_inputeventpangesture.rst b/classes/class_inputeventpangesture.rst index 450f9c155f6..fb054d01912 100644 --- a/classes/class_inputeventpangesture.rst +++ b/classes/class_inputeventpangesture.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/InputEventPanGesture.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/InputEventPanGesture.xml. .. _class_InputEventPanGesture: diff --git a/classes/class_inputeventscreendrag.rst b/classes/class_inputeventscreendrag.rst index eed293817ba..4d1bb83826c 100644 --- a/classes/class_inputeventscreendrag.rst +++ b/classes/class_inputeventscreendrag.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/InputEventScreenDrag.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/InputEventScreenDrag.xml. .. _class_InputEventScreenDrag: diff --git a/classes/class_inputeventscreentouch.rst b/classes/class_inputeventscreentouch.rst index c7e4ee170c5..8ea6a483249 100644 --- a/classes/class_inputeventscreentouch.rst +++ b/classes/class_inputeventscreentouch.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/InputEventScreenTouch.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/InputEventScreenTouch.xml. .. _class_InputEventScreenTouch: diff --git a/classes/class_inputeventshortcut.rst b/classes/class_inputeventshortcut.rst index 845fdeddffc..a3ac3386fef 100644 --- a/classes/class_inputeventshortcut.rst +++ b/classes/class_inputeventshortcut.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/InputEventShortcut.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/InputEventShortcut.xml. .. _class_InputEventShortcut: diff --git a/classes/class_inputeventwithmodifiers.rst b/classes/class_inputeventwithmodifiers.rst index d01dcda82e6..33939fc21f6 100644 --- a/classes/class_inputeventwithmodifiers.rst +++ b/classes/class_inputeventwithmodifiers.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/InputEventWithModifiers.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/InputEventWithModifiers.xml. .. _class_InputEventWithModifiers: diff --git a/classes/class_inputmap.rst b/classes/class_inputmap.rst index a0726412459..4680b645619 100644 --- a/classes/class_inputmap.rst +++ b/classes/class_inputmap.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/InputMap.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/InputMap.xml. .. _class_InputMap: diff --git a/classes/class_instanceplaceholder.rst b/classes/class_instanceplaceholder.rst index d57409b6303..3f0eafb4cd4 100644 --- a/classes/class_instanceplaceholder.rst +++ b/classes/class_instanceplaceholder.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/InstancePlaceholder.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/InstancePlaceholder.xml. .. _class_InstancePlaceholder: diff --git a/classes/class_int.rst b/classes/class_int.rst index 481eae5575e..84da9fd4103 100644 --- a/classes/class_int.rst +++ b/classes/class_int.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/int.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/int.xml. .. _class_int: diff --git a/classes/class_intervaltweener.rst b/classes/class_intervaltweener.rst index 7ecf776f068..68a175127be 100644 --- a/classes/class_intervaltweener.rst +++ b/classes/class_intervaltweener.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/IntervalTweener.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/IntervalTweener.xml. .. _class_IntervalTweener: diff --git a/classes/class_ip.rst b/classes/class_ip.rst index 8fa1e92cfa7..ba5428cd00f 100644 --- a/classes/class_ip.rst +++ b/classes/class_ip.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/IP.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/IP.xml. .. _class_IP: diff --git a/classes/class_itemlist.rst b/classes/class_itemlist.rst index 3be8ea7e63a..fd88d558116 100644 --- a/classes/class_itemlist.rst +++ b/classes/class_itemlist.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/ItemList.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/ItemList.xml. .. _class_ItemList: diff --git a/classes/class_javaclass.rst b/classes/class_javaclass.rst index 7ab5101cc52..c47fc2283b5 100644 --- a/classes/class_javaclass.rst +++ b/classes/class_javaclass.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/JavaClass.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/JavaClass.xml. .. _class_JavaClass: diff --git a/classes/class_javaclasswrapper.rst b/classes/class_javaclasswrapper.rst index d36918c9686..1b5d83c53b3 100644 --- a/classes/class_javaclasswrapper.rst +++ b/classes/class_javaclasswrapper.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/JavaClassWrapper.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/JavaClassWrapper.xml. .. _class_JavaClassWrapper: diff --git a/classes/class_javascriptbridge.rst b/classes/class_javascriptbridge.rst index d8be160c79c..fd052acd761 100644 --- a/classes/class_javascriptbridge.rst +++ b/classes/class_javascriptbridge.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/JavaScriptBridge.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/JavaScriptBridge.xml. .. _class_JavaScriptBridge: diff --git a/classes/class_javascriptobject.rst b/classes/class_javascriptobject.rst index 5bf84788e44..f4952a40b18 100644 --- a/classes/class_javascriptobject.rst +++ b/classes/class_javascriptobject.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/JavaScriptObject.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/JavaScriptObject.xml. .. _class_JavaScriptObject: diff --git a/classes/class_jnisingleton.rst b/classes/class_jnisingleton.rst index 11a01e35873..519346e9b14 100644 --- a/classes/class_jnisingleton.rst +++ b/classes/class_jnisingleton.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/JNISingleton.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/JNISingleton.xml. .. _class_JNISingleton: diff --git a/classes/class_joint2d.rst b/classes/class_joint2d.rst index 51980de0208..e9d1261967b 100644 --- a/classes/class_joint2d.rst +++ b/classes/class_joint2d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Joint2D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Joint2D.xml. .. _class_Joint2D: diff --git a/classes/class_joint3d.rst b/classes/class_joint3d.rst index a9c7691fd56..99096e54d95 100644 --- a/classes/class_joint3d.rst +++ b/classes/class_joint3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Joint3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Joint3D.xml. .. _class_Joint3D: diff --git a/classes/class_json.rst b/classes/class_json.rst index a9d4a0a294f..dcb5a7be53f 100644 --- a/classes/class_json.rst +++ b/classes/class_json.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/JSON.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/JSON.xml. .. _class_JSON: diff --git a/classes/class_jsonrpc.rst b/classes/class_jsonrpc.rst index fc22403e764..5a659685b1b 100644 --- a/classes/class_jsonrpc.rst +++ b/classes/class_jsonrpc.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/JSONRPC.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/JSONRPC.xml. .. _class_JSONRPC: diff --git a/classes/class_kinematiccollision2d.rst b/classes/class_kinematiccollision2d.rst index 02ea7279570..c3215fff5b0 100644 --- a/classes/class_kinematiccollision2d.rst +++ b/classes/class_kinematiccollision2d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/KinematicCollision2D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/KinematicCollision2D.xml. .. _class_KinematicCollision2D: diff --git a/classes/class_kinematiccollision3d.rst b/classes/class_kinematiccollision3d.rst index c754716763f..c768ece1b9a 100644 --- a/classes/class_kinematiccollision3d.rst +++ b/classes/class_kinematiccollision3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/KinematicCollision3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/KinematicCollision3D.xml. .. _class_KinematicCollision3D: diff --git a/classes/class_label.rst b/classes/class_label.rst index f3d2252ea71..9d7dbcd5ec6 100644 --- a/classes/class_label.rst +++ b/classes/class_label.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Label.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Label.xml. .. _class_Label: diff --git a/classes/class_label3d.rst b/classes/class_label3d.rst index cd299ff2dbc..11ea2ad45a6 100644 --- a/classes/class_label3d.rst +++ b/classes/class_label3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Label3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Label3D.xml. .. _class_Label3D: diff --git a/classes/class_labelsettings.rst b/classes/class_labelsettings.rst index 57c7a3ad623..e8bdca9853f 100644 --- a/classes/class_labelsettings.rst +++ b/classes/class_labelsettings.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/LabelSettings.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/LabelSettings.xml. .. _class_LabelSettings: diff --git a/classes/class_light2d.rst b/classes/class_light2d.rst index 1e6df3b14db..697c3480a8b 100644 --- a/classes/class_light2d.rst +++ b/classes/class_light2d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Light2D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Light2D.xml. .. _class_Light2D: diff --git a/classes/class_light3d.rst b/classes/class_light3d.rst index 13a5cc3bb7e..67abf2f6994 100644 --- a/classes/class_light3d.rst +++ b/classes/class_light3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Light3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Light3D.xml. .. _class_Light3D: diff --git a/classes/class_lightmapgi.rst b/classes/class_lightmapgi.rst index 8d5058f8b9a..19dda26f911 100644 --- a/classes/class_lightmapgi.rst +++ b/classes/class_lightmapgi.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/LightmapGI.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/LightmapGI.xml. .. _class_LightmapGI: diff --git a/classes/class_lightmapgidata.rst b/classes/class_lightmapgidata.rst index dd0cfcfead5..49b29461b0e 100644 --- a/classes/class_lightmapgidata.rst +++ b/classes/class_lightmapgidata.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/LightmapGIData.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/LightmapGIData.xml. .. _class_LightmapGIData: diff --git a/classes/class_lightmapper.rst b/classes/class_lightmapper.rst index f1546f2aa88..1c95a6b31b9 100644 --- a/classes/class_lightmapper.rst +++ b/classes/class_lightmapper.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Lightmapper.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Lightmapper.xml. .. _class_Lightmapper: diff --git a/classes/class_lightmapperrd.rst b/classes/class_lightmapperrd.rst index 5ab0c9f7143..083883b8311 100644 --- a/classes/class_lightmapperrd.rst +++ b/classes/class_lightmapperrd.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/LightmapperRD.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/LightmapperRD.xml. .. _class_LightmapperRD: diff --git a/classes/class_lightmapprobe.rst b/classes/class_lightmapprobe.rst index f98dbad1187..8dbc86de025 100644 --- a/classes/class_lightmapprobe.rst +++ b/classes/class_lightmapprobe.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/LightmapProbe.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/LightmapProbe.xml. .. _class_LightmapProbe: diff --git a/classes/class_lightoccluder2d.rst b/classes/class_lightoccluder2d.rst index 7f080f63bab..9e156b8d6bc 100644 --- a/classes/class_lightoccluder2d.rst +++ b/classes/class_lightoccluder2d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/LightOccluder2D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/LightOccluder2D.xml. .. _class_LightOccluder2D: diff --git a/classes/class_line2d.rst b/classes/class_line2d.rst index 14917c680a0..a629fb9dc26 100644 --- a/classes/class_line2d.rst +++ b/classes/class_line2d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Line2D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Line2D.xml. .. _class_Line2D: diff --git a/classes/class_lineedit.rst b/classes/class_lineedit.rst index 16ceebbb95a..c38c502a8d5 100644 --- a/classes/class_lineedit.rst +++ b/classes/class_lineedit.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/LineEdit.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/LineEdit.xml. .. _class_LineEdit: diff --git a/classes/class_linkbutton.rst b/classes/class_linkbutton.rst index d35643caef0..d1f55b882f0 100644 --- a/classes/class_linkbutton.rst +++ b/classes/class_linkbutton.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/LinkButton.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/LinkButton.xml. .. _class_LinkButton: diff --git a/classes/class_mainloop.rst b/classes/class_mainloop.rst index 4d109d21ccc..74f1b787805 100644 --- a/classes/class_mainloop.rst +++ b/classes/class_mainloop.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/MainLoop.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/MainLoop.xml. .. _class_MainLoop: diff --git a/classes/class_margincontainer.rst b/classes/class_margincontainer.rst index bf2949a8f90..877a964c339 100644 --- a/classes/class_margincontainer.rst +++ b/classes/class_margincontainer.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/MarginContainer.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/MarginContainer.xml. .. _class_MarginContainer: diff --git a/classes/class_marker2d.rst b/classes/class_marker2d.rst index 431cbc5d9fb..8610f4221d1 100644 --- a/classes/class_marker2d.rst +++ b/classes/class_marker2d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Marker2D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Marker2D.xml. .. _class_Marker2D: diff --git a/classes/class_marker3d.rst b/classes/class_marker3d.rst index cafdacc282d..9442bbc66ae 100644 --- a/classes/class_marker3d.rst +++ b/classes/class_marker3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Marker3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Marker3D.xml. .. _class_Marker3D: diff --git a/classes/class_marshalls.rst b/classes/class_marshalls.rst index 6ca3b1434f8..9f41443ace7 100644 --- a/classes/class_marshalls.rst +++ b/classes/class_marshalls.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Marshalls.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Marshalls.xml. .. _class_Marshalls: diff --git a/classes/class_material.rst b/classes/class_material.rst index 51fdf106f12..8a853097b39 100644 --- a/classes/class_material.rst +++ b/classes/class_material.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Material.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Material.xml. .. _class_Material: diff --git a/classes/class_menubar.rst b/classes/class_menubar.rst index 70aed810531..4f48fb3ce3b 100644 --- a/classes/class_menubar.rst +++ b/classes/class_menubar.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/MenuBar.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/MenuBar.xml. .. _class_MenuBar: diff --git a/classes/class_menubutton.rst b/classes/class_menubutton.rst index 6790e986e6c..17d95ea2fcd 100644 --- a/classes/class_menubutton.rst +++ b/classes/class_menubutton.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/MenuButton.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/MenuButton.xml. .. _class_MenuButton: diff --git a/classes/class_mesh.rst b/classes/class_mesh.rst index 58252817b5e..9b4a0874efa 100644 --- a/classes/class_mesh.rst +++ b/classes/class_mesh.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Mesh.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Mesh.xml. .. _class_Mesh: diff --git a/classes/class_meshconvexdecompositionsettings.rst b/classes/class_meshconvexdecompositionsettings.rst index c1c6ab045e3..6667c4aa2f6 100644 --- a/classes/class_meshconvexdecompositionsettings.rst +++ b/classes/class_meshconvexdecompositionsettings.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/MeshConvexDecompositionSettings.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/MeshConvexDecompositionSettings.xml. .. _class_MeshConvexDecompositionSettings: diff --git a/classes/class_meshdatatool.rst b/classes/class_meshdatatool.rst index 273a9ea7936..e48b40d9531 100644 --- a/classes/class_meshdatatool.rst +++ b/classes/class_meshdatatool.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/MeshDataTool.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/MeshDataTool.xml. .. _class_MeshDataTool: diff --git a/classes/class_meshinstance2d.rst b/classes/class_meshinstance2d.rst index 5cf3f8028fe..5ccbacc565f 100644 --- a/classes/class_meshinstance2d.rst +++ b/classes/class_meshinstance2d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/MeshInstance2D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/MeshInstance2D.xml. .. _class_MeshInstance2D: diff --git a/classes/class_meshinstance3d.rst b/classes/class_meshinstance3d.rst index f4f90efb397..24855edf981 100644 --- a/classes/class_meshinstance3d.rst +++ b/classes/class_meshinstance3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/MeshInstance3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/MeshInstance3D.xml. .. _class_MeshInstance3D: diff --git a/classes/class_meshlibrary.rst b/classes/class_meshlibrary.rst index 432fc444b3d..9c776aa2bc8 100644 --- a/classes/class_meshlibrary.rst +++ b/classes/class_meshlibrary.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/MeshLibrary.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/MeshLibrary.xml. .. _class_MeshLibrary: diff --git a/classes/class_meshtexture.rst b/classes/class_meshtexture.rst index dbfe9014f28..16224fe5033 100644 --- a/classes/class_meshtexture.rst +++ b/classes/class_meshtexture.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/MeshTexture.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/MeshTexture.xml. .. _class_MeshTexture: diff --git a/classes/class_methodtweener.rst b/classes/class_methodtweener.rst index 4c52a6871cc..13f3bb338e1 100644 --- a/classes/class_methodtweener.rst +++ b/classes/class_methodtweener.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/MethodTweener.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/MethodTweener.xml. .. _class_MethodTweener: diff --git a/classes/class_missingnode.rst b/classes/class_missingnode.rst index f1a5d9a88e5..3f1cccdd7a9 100644 --- a/classes/class_missingnode.rst +++ b/classes/class_missingnode.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/MissingNode.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/MissingNode.xml. .. _class_MissingNode: diff --git a/classes/class_missingresource.rst b/classes/class_missingresource.rst index 3e39850411a..bafa31fc11e 100644 --- a/classes/class_missingresource.rst +++ b/classes/class_missingresource.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/MissingResource.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/MissingResource.xml. .. _class_MissingResource: diff --git a/classes/class_mobilevrinterface.rst b/classes/class_mobilevrinterface.rst index b1324bbb504..6cd71ef8eaf 100644 --- a/classes/class_mobilevrinterface.rst +++ b/classes/class_mobilevrinterface.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/modules/mobile_vr/doc_classes/MobileVRInterface.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/modules/mobile_vr/doc_classes/MobileVRInterface.xml. .. _class_MobileVRInterface: diff --git a/classes/class_moviewriter.rst b/classes/class_moviewriter.rst index bcde643e217..adb4c6ae5ad 100644 --- a/classes/class_moviewriter.rst +++ b/classes/class_moviewriter.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/MovieWriter.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/MovieWriter.xml. .. _class_MovieWriter: diff --git a/classes/class_multimesh.rst b/classes/class_multimesh.rst index c6db9a01c96..3699dd4335d 100644 --- a/classes/class_multimesh.rst +++ b/classes/class_multimesh.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/MultiMesh.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/MultiMesh.xml. .. _class_MultiMesh: diff --git a/classes/class_multimeshinstance2d.rst b/classes/class_multimeshinstance2d.rst index e30a8c4cce5..8c8d16aa581 100644 --- a/classes/class_multimeshinstance2d.rst +++ b/classes/class_multimeshinstance2d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/MultiMeshInstance2D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/MultiMeshInstance2D.xml. .. _class_MultiMeshInstance2D: diff --git a/classes/class_multimeshinstance3d.rst b/classes/class_multimeshinstance3d.rst index 34e6844d273..a7d57fe19bd 100644 --- a/classes/class_multimeshinstance3d.rst +++ b/classes/class_multimeshinstance3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/MultiMeshInstance3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/MultiMeshInstance3D.xml. .. _class_MultiMeshInstance3D: diff --git a/classes/class_multiplayerapi.rst b/classes/class_multiplayerapi.rst index 850a9eba07a..c06ee689256 100644 --- a/classes/class_multiplayerapi.rst +++ b/classes/class_multiplayerapi.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/MultiplayerAPI.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/MultiplayerAPI.xml. .. _class_MultiplayerAPI: diff --git a/classes/class_multiplayerapiextension.rst b/classes/class_multiplayerapiextension.rst index b06a29e93e6..9ea4c1dd179 100644 --- a/classes/class_multiplayerapiextension.rst +++ b/classes/class_multiplayerapiextension.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/MultiplayerAPIExtension.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/MultiplayerAPIExtension.xml. .. _class_MultiplayerAPIExtension: diff --git a/classes/class_multiplayerpeer.rst b/classes/class_multiplayerpeer.rst index a526e66186f..c2a53af71aa 100644 --- a/classes/class_multiplayerpeer.rst +++ b/classes/class_multiplayerpeer.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/MultiplayerPeer.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/MultiplayerPeer.xml. .. _class_MultiplayerPeer: diff --git a/classes/class_multiplayerpeerextension.rst b/classes/class_multiplayerpeerextension.rst index 9e0695f3286..0a0c29e92fc 100644 --- a/classes/class_multiplayerpeerextension.rst +++ b/classes/class_multiplayerpeerextension.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/MultiplayerPeerExtension.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/MultiplayerPeerExtension.xml. .. _class_MultiplayerPeerExtension: diff --git a/classes/class_multiplayerspawner.rst b/classes/class_multiplayerspawner.rst index d6696ebc5a9..acc445c2782 100644 --- a/classes/class_multiplayerspawner.rst +++ b/classes/class_multiplayerspawner.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/modules/multiplayer/doc_classes/MultiplayerSpawner.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/modules/multiplayer/doc_classes/MultiplayerSpawner.xml. .. _class_MultiplayerSpawner: diff --git a/classes/class_multiplayersynchronizer.rst b/classes/class_multiplayersynchronizer.rst index 4c05809994e..b1dd274d1b0 100644 --- a/classes/class_multiplayersynchronizer.rst +++ b/classes/class_multiplayersynchronizer.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/modules/multiplayer/doc_classes/MultiplayerSynchronizer.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/modules/multiplayer/doc_classes/MultiplayerSynchronizer.xml. .. _class_MultiplayerSynchronizer: diff --git a/classes/class_mutex.rst b/classes/class_mutex.rst index 869ae609774..a38aaf8b27b 100644 --- a/classes/class_mutex.rst +++ b/classes/class_mutex.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Mutex.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Mutex.xml. .. _class_Mutex: diff --git a/classes/class_navigationagent2d.rst b/classes/class_navigationagent2d.rst index 04b4afe2df1..85c2e9febb7 100644 --- a/classes/class_navigationagent2d.rst +++ b/classes/class_navigationagent2d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/NavigationAgent2D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/NavigationAgent2D.xml. .. _class_NavigationAgent2D: diff --git a/classes/class_navigationagent3d.rst b/classes/class_navigationagent3d.rst index 0aaf75c0b61..be962a00efd 100644 --- a/classes/class_navigationagent3d.rst +++ b/classes/class_navigationagent3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/NavigationAgent3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/NavigationAgent3D.xml. .. _class_NavigationAgent3D: diff --git a/classes/class_navigationlink2d.rst b/classes/class_navigationlink2d.rst index d7da9c51b34..7ae69e70d53 100644 --- a/classes/class_navigationlink2d.rst +++ b/classes/class_navigationlink2d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/NavigationLink2D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/NavigationLink2D.xml. .. _class_NavigationLink2D: diff --git a/classes/class_navigationlink3d.rst b/classes/class_navigationlink3d.rst index 9ed2fb436cd..0bde0640088 100644 --- a/classes/class_navigationlink3d.rst +++ b/classes/class_navigationlink3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/NavigationLink3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/NavigationLink3D.xml. .. _class_NavigationLink3D: diff --git a/classes/class_navigationmesh.rst b/classes/class_navigationmesh.rst index f80ba8ffef6..ec889e08071 100644 --- a/classes/class_navigationmesh.rst +++ b/classes/class_navigationmesh.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/NavigationMesh.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/NavigationMesh.xml. .. _class_NavigationMesh: @@ -407,7 +407,7 @@ The maximum distance the detail mesh surface should deviate from heightfield, in - void **set_edge_max_error** **(** :ref:`float` value **)** - :ref:`float` **get_edge_max_error** **(** **)** -The maximum distance a simplfied contour's border edges should deviate the original raw contour. +The maximum distance a simplified contour's border edges should deviate the original raw contour. .. rst-class:: classref-item-separator diff --git a/classes/class_navigationmeshgenerator.rst b/classes/class_navigationmeshgenerator.rst index 6eb247e2e4a..87ffdee27b2 100644 --- a/classes/class_navigationmeshgenerator.rst +++ b/classes/class_navigationmeshgenerator.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/NavigationMeshGenerator.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/NavigationMeshGenerator.xml. .. _class_NavigationMeshGenerator: @@ -109,6 +109,8 @@ Parses the :ref:`SceneTree` for source geometry according to th \ **Note:** This function needs to run on the main thread or with a deferred call as the SceneTree is not thread-safe. +\ **Performance:** While convenient, reading data arrays from :ref:`Mesh` resources can affect the frame rate negatively. The data needs to be received from the GPU, stalling the :ref:`RenderingServer` in the process. For performance prefer the use of e.g. collision shapes or creating the data arrays entirely in code. + .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)` .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)` .. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)` diff --git a/classes/class_navigationmeshsourcegeometrydata3d.rst b/classes/class_navigationmeshsourcegeometrydata3d.rst index 11a11ce9447..5029028a3d3 100644 --- a/classes/class_navigationmeshsourcegeometrydata3d.rst +++ b/classes/class_navigationmeshsourcegeometrydata3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/NavigationMeshSourceGeometryData3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/NavigationMeshSourceGeometryData3D.xml. .. _class_NavigationMeshSourceGeometryData3D: diff --git a/classes/class_navigationobstacle2d.rst b/classes/class_navigationobstacle2d.rst index 2b679abc52d..54924a199f5 100644 --- a/classes/class_navigationobstacle2d.rst +++ b/classes/class_navigationobstacle2d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/NavigationObstacle2D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/NavigationObstacle2D.xml. .. _class_NavigationObstacle2D: diff --git a/classes/class_navigationobstacle3d.rst b/classes/class_navigationobstacle3d.rst index 048f64a0008..b72d25c68fa 100644 --- a/classes/class_navigationobstacle3d.rst +++ b/classes/class_navigationobstacle3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/NavigationObstacle3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/NavigationObstacle3D.xml. .. _class_NavigationObstacle3D: diff --git a/classes/class_navigationpathqueryparameters2d.rst b/classes/class_navigationpathqueryparameters2d.rst index 19a74f3c556..d11fe2fee04 100644 --- a/classes/class_navigationpathqueryparameters2d.rst +++ b/classes/class_navigationpathqueryparameters2d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/NavigationPathQueryParameters2D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/NavigationPathQueryParameters2D.xml. .. _class_NavigationPathQueryParameters2D: diff --git a/classes/class_navigationpathqueryparameters3d.rst b/classes/class_navigationpathqueryparameters3d.rst index f34119a6dab..e48ec8a2134 100644 --- a/classes/class_navigationpathqueryparameters3d.rst +++ b/classes/class_navigationpathqueryparameters3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/NavigationPathQueryParameters3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/NavigationPathQueryParameters3D.xml. .. _class_NavigationPathQueryParameters3D: diff --git a/classes/class_navigationpathqueryresult2d.rst b/classes/class_navigationpathqueryresult2d.rst index bce6999c3cd..4801de578d0 100644 --- a/classes/class_navigationpathqueryresult2d.rst +++ b/classes/class_navigationpathqueryresult2d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/NavigationPathQueryResult2D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/NavigationPathQueryResult2D.xml. .. _class_NavigationPathQueryResult2D: diff --git a/classes/class_navigationpathqueryresult3d.rst b/classes/class_navigationpathqueryresult3d.rst index 13067bad99e..d2597bd31ad 100644 --- a/classes/class_navigationpathqueryresult3d.rst +++ b/classes/class_navigationpathqueryresult3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/NavigationPathQueryResult3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/NavigationPathQueryResult3D.xml. .. _class_NavigationPathQueryResult3D: diff --git a/classes/class_navigationpolygon.rst b/classes/class_navigationpolygon.rst index 9554ba0f5c7..89d7f940a4d 100644 --- a/classes/class_navigationpolygon.rst +++ b/classes/class_navigationpolygon.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/NavigationPolygon.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/NavigationPolygon.xml. .. _class_NavigationPolygon: diff --git a/classes/class_navigationregion2d.rst b/classes/class_navigationregion2d.rst index a280690b58c..4c08b487d89 100644 --- a/classes/class_navigationregion2d.rst +++ b/classes/class_navigationregion2d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/NavigationRegion2D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/NavigationRegion2D.xml. .. _class_NavigationRegion2D: diff --git a/classes/class_navigationregion3d.rst b/classes/class_navigationregion3d.rst index 8e5df807558..84feb5d4c77 100644 --- a/classes/class_navigationregion3d.rst +++ b/classes/class_navigationregion3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/NavigationRegion3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/NavigationRegion3D.xml. .. _class_NavigationRegion3D: diff --git a/classes/class_navigationserver2d.rst b/classes/class_navigationserver2d.rst index 961a474a646..478977d11ad 100644 --- a/classes/class_navigationserver2d.rst +++ b/classes/class_navigationserver2d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/NavigationServer2D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/NavigationServer2D.xml. .. _class_NavigationServer2D: diff --git a/classes/class_navigationserver3d.rst b/classes/class_navigationserver3d.rst index 3a0e42e5cc7..9d9efbce480 100644 --- a/classes/class_navigationserver3d.rst +++ b/classes/class_navigationserver3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/NavigationServer3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/NavigationServer3D.xml. .. _class_NavigationServer3D: @@ -1467,6 +1467,8 @@ Parses the :ref:`SceneTree` for source geometry according to th \ **Note:** This function needs to run on the main thread or with a deferred call as the SceneTree is not thread-safe. +\ **Performance:** While convenient, reading data arrays from :ref:`Mesh` resources can affect the frame rate negatively. The data needs to be received from the GPU, stalling the :ref:`RenderingServer` in the process. For performance prefer the use of e.g. collision shapes or creating the data arrays entirely in code. + .. rst-class:: classref-item-separator ---- diff --git a/classes/class_ninepatchrect.rst b/classes/class_ninepatchrect.rst index 14219a4a554..26cbcf3e470 100644 --- a/classes/class_ninepatchrect.rst +++ b/classes/class_ninepatchrect.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/NinePatchRect.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/NinePatchRect.xml. .. _class_NinePatchRect: diff --git a/classes/class_node.rst b/classes/class_node.rst index dae755129cf..25127c32bd5 100644 --- a/classes/class_node.rst +++ b/classes/class_node.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Node.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Node.xml. .. _class_Node: @@ -1067,9 +1067,9 @@ The name of the node. This name is unique among the siblings (other child nodes - void **set_owner** **(** :ref:`Node` value **)** - :ref:`Node` **get_owner** **(** **)** -The node owner. A node can have any other node as owner (as long as it is a valid parent, grandparent, etc. ascending in the tree). When saving a node (using :ref:`PackedScene`), all the nodes it owns will be saved with it. This allows for the creation of complex :ref:`SceneTree`\ s, with instancing and subinstancing. +The node owner. A node can have any ancestor node as owner (i.e. a parent, grandparent, etc. node ascending in the tree). This implies that :ref:`add_child` should be called before setting the owner, so that this relationship of parenting exists. When saving a node (using :ref:`PackedScene`), all the nodes it owns will be saved with it. This allows for the creation of complex scene trees, with instancing and subinstancing. -\ **Note:** If you want a child to be persisted to a :ref:`PackedScene`, you must set :ref:`owner` in addition to calling :ref:`add_child`. This is typically relevant for :doc:`tool scripts <../tutorials/plugins/running_code_in_the_editor>` and :doc:`editor plugins <../tutorials/plugins/editor/index>`. If :ref:`add_child` is called without setting :ref:`owner`, the newly added **Node** will not be visible in the scene tree, though it will be visible in the 2D/3D view. +\ **Note:** If you want a child to be persisted to a :ref:`PackedScene`, you must set :ref:`owner` in addition to calling :ref:`add_child`. This is typically relevant for :doc:`tool scripts <../tutorials/plugins/running_code_in_the_editor>` and :doc:`editor plugins <../tutorials/plugins/editor/index>`. If a new node is added to the tree without setting its owner as an ancestor in that tree, it will be visible in the 2D/3D view, but not in the scene tree (and not persisted when packing or saving). .. rst-class:: classref-item-separator diff --git a/classes/class_node2d.rst b/classes/class_node2d.rst index 345effed24b..c1668ac6256 100644 --- a/classes/class_node2d.rst +++ b/classes/class_node2d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Node2D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Node2D.xml. .. _class_Node2D: diff --git a/classes/class_node3d.rst b/classes/class_node3d.rst index 4362c132fa9..c5d5006a54f 100644 --- a/classes/class_node3d.rst +++ b/classes/class_node3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Node3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Node3D.xml. .. _class_Node3D: diff --git a/classes/class_node3dgizmo.rst b/classes/class_node3dgizmo.rst index da8169470f2..2d0c5739f7d 100644 --- a/classes/class_node3dgizmo.rst +++ b/classes/class_node3dgizmo.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Node3DGizmo.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Node3DGizmo.xml. .. _class_Node3DGizmo: diff --git a/classes/class_nodepath.rst b/classes/class_nodepath.rst index f9f3a9b2adb..2051e7a254c 100644 --- a/classes/class_nodepath.rst +++ b/classes/class_nodepath.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/NodePath.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/NodePath.xml. .. _class_NodePath: diff --git a/classes/class_noise.rst b/classes/class_noise.rst index 6db9c05109b..3eee1ecfbed 100644 --- a/classes/class_noise.rst +++ b/classes/class_noise.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/modules/noise/doc_classes/Noise.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/modules/noise/doc_classes/Noise.xml. .. _class_Noise: diff --git a/classes/class_noisetexture2d.rst b/classes/class_noisetexture2d.rst index b0770284533..d5fc4d7e6d3 100644 --- a/classes/class_noisetexture2d.rst +++ b/classes/class_noisetexture2d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/modules/noise/doc_classes/NoiseTexture2D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/modules/noise/doc_classes/NoiseTexture2D.xml. .. _class_NoiseTexture2D: diff --git a/classes/class_noisetexture3d.rst b/classes/class_noisetexture3d.rst index 69cffc5873f..7ab55f69dbd 100644 --- a/classes/class_noisetexture3d.rst +++ b/classes/class_noisetexture3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/modules/noise/doc_classes/NoiseTexture3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/modules/noise/doc_classes/NoiseTexture3D.xml. .. _class_NoiseTexture3D: diff --git a/classes/class_object.rst b/classes/class_object.rst index f432023454d..91069dfc228 100644 --- a/classes/class_object.rst +++ b/classes/class_object.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Object.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Object.xml. .. _class_Object: diff --git a/classes/class_occluder3d.rst b/classes/class_occluder3d.rst index 87313c3b87e..418120e3a1c 100644 --- a/classes/class_occluder3d.rst +++ b/classes/class_occluder3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Occluder3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Occluder3D.xml. .. _class_Occluder3D: diff --git a/classes/class_occluderinstance3d.rst b/classes/class_occluderinstance3d.rst index 0538755b591..16d45d19a8d 100644 --- a/classes/class_occluderinstance3d.rst +++ b/classes/class_occluderinstance3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/OccluderInstance3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/OccluderInstance3D.xml. .. _class_OccluderInstance3D: @@ -100,7 +100,7 @@ To improve performance and avoid artifacts, it is recommended to exclude dynamic The simplification distance to use for simplifying the generated occluder polygon (in 3D units). Higher values result in a less detailed occluder mesh, which improves performance but reduces culling accuracy. -The occluder geometry is rendered on the CPU, so it is important to keep its geometry as simple as possible. Since the buffer is rendered at a low resolution, less detailed occluder meshes generally still work well. The default value is fairly aggressive, so you may have to decrase it if you run into false negatives (objects being occluded even though they are visible by the camera). A value of ``0.01`` will act conservatively, and will keep geometry *perceptually* unaffected in the occlusion culling buffer. Depending on the scene, a value of ``0.01`` may still simplify the mesh noticeably compared to disabling simplification entirely. +The occluder geometry is rendered on the CPU, so it is important to keep its geometry as simple as possible. Since the buffer is rendered at a low resolution, less detailed occluder meshes generally still work well. The default value is fairly aggressive, so you may have to decrease it if you run into false negatives (objects being occluded even though they are visible by the camera). A value of ``0.01`` will act conservatively, and will keep geometry *perceptually* unaffected in the occlusion culling buffer. Depending on the scene, a value of ``0.01`` may still simplify the mesh noticeably compared to disabling simplification entirely. Setting this to ``0.0`` disables simplification entirely, but vertices in the exact same position will still be merged. The mesh will also be re-indexed to reduce both the number of vertices and indices. diff --git a/classes/class_occluderpolygon2d.rst b/classes/class_occluderpolygon2d.rst index cf390932c8a..405a7b41da6 100644 --- a/classes/class_occluderpolygon2d.rst +++ b/classes/class_occluderpolygon2d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/OccluderPolygon2D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/OccluderPolygon2D.xml. .. _class_OccluderPolygon2D: diff --git a/classes/class_offlinemultiplayerpeer.rst b/classes/class_offlinemultiplayerpeer.rst index 1aa7b2c72ec..3ca8ceac2f5 100644 --- a/classes/class_offlinemultiplayerpeer.rst +++ b/classes/class_offlinemultiplayerpeer.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/OfflineMultiplayerPeer.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/OfflineMultiplayerPeer.xml. .. _class_OfflineMultiplayerPeer: diff --git a/classes/class_oggpacketsequence.rst b/classes/class_oggpacketsequence.rst index 0daafa57530..5c0b467f4cb 100644 --- a/classes/class_oggpacketsequence.rst +++ b/classes/class_oggpacketsequence.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/modules/ogg/doc_classes/OggPacketSequence.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/modules/ogg/doc_classes/OggPacketSequence.xml. .. _class_OggPacketSequence: diff --git a/classes/class_oggpacketsequenceplayback.rst b/classes/class_oggpacketsequenceplayback.rst index 2c8b750f537..0778386760a 100644 --- a/classes/class_oggpacketsequenceplayback.rst +++ b/classes/class_oggpacketsequenceplayback.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/modules/ogg/doc_classes/OggPacketSequencePlayback.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/modules/ogg/doc_classes/OggPacketSequencePlayback.xml. .. _class_OggPacketSequencePlayback: diff --git a/classes/class_omnilight3d.rst b/classes/class_omnilight3d.rst index 8d17e42ae40..46dd4d43c87 100644 --- a/classes/class_omnilight3d.rst +++ b/classes/class_omnilight3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/OmniLight3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/OmniLight3D.xml. .. _class_OmniLight3D: diff --git a/classes/class_openxraction.rst b/classes/class_openxraction.rst index 13ca5faf08d..e5ad14a9d8a 100644 --- a/classes/class_openxraction.rst +++ b/classes/class_openxraction.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/modules/openxr/doc_classes/OpenXRAction.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/modules/openxr/doc_classes/OpenXRAction.xml. .. _class_OpenXRAction: diff --git a/classes/class_openxractionmap.rst b/classes/class_openxractionmap.rst index 94d3b968e3c..85d7612aa1c 100644 --- a/classes/class_openxractionmap.rst +++ b/classes/class_openxractionmap.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/modules/openxr/doc_classes/OpenXRActionMap.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/modules/openxr/doc_classes/OpenXRActionMap.xml. .. _class_OpenXRActionMap: diff --git a/classes/class_openxractionset.rst b/classes/class_openxractionset.rst index 8e28559793e..351f5f38198 100644 --- a/classes/class_openxractionset.rst +++ b/classes/class_openxractionset.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/modules/openxr/doc_classes/OpenXRActionSet.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/modules/openxr/doc_classes/OpenXRActionSet.xml. .. _class_OpenXRActionSet: diff --git a/classes/class_openxrhand.rst b/classes/class_openxrhand.rst index 3c06b4f0911..a39134ad466 100644 --- a/classes/class_openxrhand.rst +++ b/classes/class_openxrhand.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/modules/openxr/doc_classes/OpenXRHand.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/modules/openxr/doc_classes/OpenXRHand.xml. .. _class_OpenXRHand: diff --git a/classes/class_openxrinteractionprofile.rst b/classes/class_openxrinteractionprofile.rst index ffc8ec33003..169a346aaa6 100644 --- a/classes/class_openxrinteractionprofile.rst +++ b/classes/class_openxrinteractionprofile.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/modules/openxr/doc_classes/OpenXRInteractionProfile.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/modules/openxr/doc_classes/OpenXRInteractionProfile.xml. .. _class_OpenXRInteractionProfile: diff --git a/classes/class_openxrinterface.rst b/classes/class_openxrinterface.rst index 78a6fff0170..3e5004fa6bc 100644 --- a/classes/class_openxrinterface.rst +++ b/classes/class_openxrinterface.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/modules/openxr/doc_classes/OpenXRInterface.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/modules/openxr/doc_classes/OpenXRInterface.xml. .. _class_OpenXRInterface: diff --git a/classes/class_openxripbinding.rst b/classes/class_openxripbinding.rst index 1a1385fb1be..f4222b76b5c 100644 --- a/classes/class_openxripbinding.rst +++ b/classes/class_openxripbinding.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/modules/openxr/doc_classes/OpenXRIPBinding.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/modules/openxr/doc_classes/OpenXRIPBinding.xml. .. _class_OpenXRIPBinding: diff --git a/classes/class_optimizedtranslation.rst b/classes/class_optimizedtranslation.rst index e404d60ac74..49006c064a1 100644 --- a/classes/class_optimizedtranslation.rst +++ b/classes/class_optimizedtranslation.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/OptimizedTranslation.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/OptimizedTranslation.xml. .. _class_OptimizedTranslation: diff --git a/classes/class_optionbutton.rst b/classes/class_optionbutton.rst index b3be2271549..139eb180070 100644 --- a/classes/class_optionbutton.rst +++ b/classes/class_optionbutton.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/OptionButton.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/OptionButton.xml. .. _class_OptionButton: diff --git a/classes/class_ormmaterial3d.rst b/classes/class_ormmaterial3d.rst index 87e804705d5..a2fe698ede3 100644 --- a/classes/class_ormmaterial3d.rst +++ b/classes/class_ormmaterial3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/ORMMaterial3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/ORMMaterial3D.xml. .. _class_ORMMaterial3D: diff --git a/classes/class_os.rst b/classes/class_os.rst index 00e1b832c83..5738a40f3b0 100644 --- a/classes/class_os.rst +++ b/classes/class_os.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/OS.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/OS.xml. .. _class_OS: @@ -1463,7 +1463,7 @@ If ``file_or_dir_path`` is a valid directory path, and ``open_folder`` is ``true Use :ref:`ProjectSettings.globalize_path` to convert a ``res://`` or ``user://`` path into a system path for use with this method. -\ **Note:** Currently this method is only implemented on Windows. On other platforms, it will fallback to :ref:`shell_open` with a directory path for ``file_or_dir_path``. +\ **Note:** Currently this method is only implemented on Windows and macOS. On other platforms, it will fallback to :ref:`shell_open` with a directory path of ``file_or_dir_path`` with prefix ``file://``. .. rst-class:: classref-item-separator diff --git a/classes/class_packedbytearray.rst b/classes/class_packedbytearray.rst index 5266258bd9a..8bfd8d236a5 100644 --- a/classes/class_packedbytearray.rst +++ b/classes/class_packedbytearray.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/PackedByteArray.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/PackedByteArray.xml. .. _class_PackedByteArray: diff --git a/classes/class_packedcolorarray.rst b/classes/class_packedcolorarray.rst index 7881397151d..ea95de19c16 100644 --- a/classes/class_packedcolorarray.rst +++ b/classes/class_packedcolorarray.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/PackedColorArray.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/PackedColorArray.xml. .. _class_PackedColorArray: diff --git a/classes/class_packeddatacontainer.rst b/classes/class_packeddatacontainer.rst index 01c94c60695..c2467bd6c8a 100644 --- a/classes/class_packeddatacontainer.rst +++ b/classes/class_packeddatacontainer.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/PackedDataContainer.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/PackedDataContainer.xml. .. _class_PackedDataContainer: diff --git a/classes/class_packeddatacontainerref.rst b/classes/class_packeddatacontainerref.rst index 13d73b0ee9f..28fdbd157cb 100644 --- a/classes/class_packeddatacontainerref.rst +++ b/classes/class_packeddatacontainerref.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/PackedDataContainerRef.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/PackedDataContainerRef.xml. .. _class_PackedDataContainerRef: diff --git a/classes/class_packedfloat32array.rst b/classes/class_packedfloat32array.rst index 19907772230..f65b481fb05 100644 --- a/classes/class_packedfloat32array.rst +++ b/classes/class_packedfloat32array.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/PackedFloat32Array.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/PackedFloat32Array.xml. .. _class_PackedFloat32Array: diff --git a/classes/class_packedfloat64array.rst b/classes/class_packedfloat64array.rst index fc84071418c..d1770fd4270 100644 --- a/classes/class_packedfloat64array.rst +++ b/classes/class_packedfloat64array.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/PackedFloat64Array.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/PackedFloat64Array.xml. .. _class_PackedFloat64Array: diff --git a/classes/class_packedint32array.rst b/classes/class_packedint32array.rst index ff23a9469a7..80b21d95ae6 100644 --- a/classes/class_packedint32array.rst +++ b/classes/class_packedint32array.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/PackedInt32Array.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/PackedInt32Array.xml. .. _class_PackedInt32Array: diff --git a/classes/class_packedint64array.rst b/classes/class_packedint64array.rst index 661cf110f61..20f1c252337 100644 --- a/classes/class_packedint64array.rst +++ b/classes/class_packedint64array.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/PackedInt64Array.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/PackedInt64Array.xml. .. _class_PackedInt64Array: diff --git a/classes/class_packedscene.rst b/classes/class_packedscene.rst index dee78eeaed3..83e186f5275 100644 --- a/classes/class_packedscene.rst +++ b/classes/class_packedscene.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/PackedScene.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/PackedScene.xml. .. _class_PackedScene: diff --git a/classes/class_packedstringarray.rst b/classes/class_packedstringarray.rst index 3eae67d1da6..12eccd88ec1 100644 --- a/classes/class_packedstringarray.rst +++ b/classes/class_packedstringarray.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/PackedStringArray.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/PackedStringArray.xml. .. _class_PackedStringArray: diff --git a/classes/class_packedvector2array.rst b/classes/class_packedvector2array.rst index eafef789637..1b7b444e22e 100644 --- a/classes/class_packedvector2array.rst +++ b/classes/class_packedvector2array.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/PackedVector2Array.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/PackedVector2Array.xml. .. _class_PackedVector2Array: diff --git a/classes/class_packedvector3array.rst b/classes/class_packedvector3array.rst index 098916a1c69..7430b768365 100644 --- a/classes/class_packedvector3array.rst +++ b/classes/class_packedvector3array.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/PackedVector3Array.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/PackedVector3Array.xml. .. _class_PackedVector3Array: diff --git a/classes/class_packetpeer.rst b/classes/class_packetpeer.rst index 6a883200da7..7bf8cfe61d3 100644 --- a/classes/class_packetpeer.rst +++ b/classes/class_packetpeer.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/PacketPeer.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/PacketPeer.xml. .. _class_PacketPeer: diff --git a/classes/class_packetpeerdtls.rst b/classes/class_packetpeerdtls.rst index b9551d35313..04be99cd065 100644 --- a/classes/class_packetpeerdtls.rst +++ b/classes/class_packetpeerdtls.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/PacketPeerDTLS.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/PacketPeerDTLS.xml. .. _class_PacketPeerDTLS: diff --git a/classes/class_packetpeerextension.rst b/classes/class_packetpeerextension.rst index 7b576b0caf2..ccbb9366051 100644 --- a/classes/class_packetpeerextension.rst +++ b/classes/class_packetpeerextension.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/PacketPeerExtension.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/PacketPeerExtension.xml. .. _class_PacketPeerExtension: diff --git a/classes/class_packetpeerstream.rst b/classes/class_packetpeerstream.rst index 1de903a9ccd..c20961561bb 100644 --- a/classes/class_packetpeerstream.rst +++ b/classes/class_packetpeerstream.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/PacketPeerStream.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/PacketPeerStream.xml. .. _class_PacketPeerStream: diff --git a/classes/class_packetpeerudp.rst b/classes/class_packetpeerudp.rst index 08595acba54..62d9b8def4f 100644 --- a/classes/class_packetpeerudp.rst +++ b/classes/class_packetpeerudp.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/PacketPeerUDP.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/PacketPeerUDP.xml. .. _class_PacketPeerUDP: diff --git a/classes/class_panel.rst b/classes/class_panel.rst index b66a115c2ed..939ac4c2caa 100644 --- a/classes/class_panel.rst +++ b/classes/class_panel.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Panel.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Panel.xml. .. _class_Panel: diff --git a/classes/class_panelcontainer.rst b/classes/class_panelcontainer.rst index 67886a98cbb..96ebb945c67 100644 --- a/classes/class_panelcontainer.rst +++ b/classes/class_panelcontainer.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/PanelContainer.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/PanelContainer.xml. .. _class_PanelContainer: diff --git a/classes/class_panoramaskymaterial.rst b/classes/class_panoramaskymaterial.rst index b0c7d8769ca..468812138dc 100644 --- a/classes/class_panoramaskymaterial.rst +++ b/classes/class_panoramaskymaterial.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/PanoramaSkyMaterial.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/PanoramaSkyMaterial.xml. .. _class_PanoramaSkyMaterial: diff --git a/classes/class_parallaxbackground.rst b/classes/class_parallaxbackground.rst index fcab0d205bc..6f5a17ca417 100644 --- a/classes/class_parallaxbackground.rst +++ b/classes/class_parallaxbackground.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/ParallaxBackground.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/ParallaxBackground.xml. .. _class_ParallaxBackground: diff --git a/classes/class_parallaxlayer.rst b/classes/class_parallaxlayer.rst index a6eb8324d19..d2df5981329 100644 --- a/classes/class_parallaxlayer.rst +++ b/classes/class_parallaxlayer.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/ParallaxLayer.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/ParallaxLayer.xml. .. _class_ParallaxLayer: diff --git a/classes/class_particleprocessmaterial.rst b/classes/class_particleprocessmaterial.rst index f418956244b..9dbb4d55e20 100644 --- a/classes/class_particleprocessmaterial.rst +++ b/classes/class_particleprocessmaterial.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/ParticleProcessMaterial.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/ParticleProcessMaterial.xml. .. _class_ParticleProcessMaterial: diff --git a/classes/class_path2d.rst b/classes/class_path2d.rst index d6c027fb6ae..69bec8fc750 100644 --- a/classes/class_path2d.rst +++ b/classes/class_path2d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Path2D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Path2D.xml. .. _class_Path2D: diff --git a/classes/class_path3d.rst b/classes/class_path3d.rst index dd9b3e1e5b9..14436af3ee0 100644 --- a/classes/class_path3d.rst +++ b/classes/class_path3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Path3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Path3D.xml. .. _class_Path3D: diff --git a/classes/class_pathfollow2d.rst b/classes/class_pathfollow2d.rst index c6de58a0b89..62c38f980d3 100644 --- a/classes/class_pathfollow2d.rst +++ b/classes/class_pathfollow2d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/PathFollow2D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/PathFollow2D.xml. .. _class_PathFollow2D: diff --git a/classes/class_pathfollow3d.rst b/classes/class_pathfollow3d.rst index 2b8455ddf2d..1e029b9f539 100644 --- a/classes/class_pathfollow3d.rst +++ b/classes/class_pathfollow3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/PathFollow3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/PathFollow3D.xml. .. _class_PathFollow3D: diff --git a/classes/class_pckpacker.rst b/classes/class_pckpacker.rst index 0b78762ad92..27cfbde8013 100644 --- a/classes/class_pckpacker.rst +++ b/classes/class_pckpacker.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/PCKPacker.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/PCKPacker.xml. .. _class_PCKPacker: diff --git a/classes/class_performance.rst b/classes/class_performance.rst index bf0f21d200a..48f512fc4f9 100644 --- a/classes/class_performance.rst +++ b/classes/class_performance.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Performance.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Performance.xml. .. _class_Performance: diff --git a/classes/class_physicalbone2d.rst b/classes/class_physicalbone2d.rst index ad8f7a67a3b..9d8de19eeee 100644 --- a/classes/class_physicalbone2d.rst +++ b/classes/class_physicalbone2d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/PhysicalBone2D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/PhysicalBone2D.xml. .. _class_PhysicalBone2D: @@ -113,7 +113,7 @@ The index of the :ref:`Bone2D` that this **PhysicalBone2D** should - void **set_bone2d_nodepath** **(** :ref:`NodePath` value **)** - :ref:`NodePath` **get_bone2d_nodepath** **(** **)** -The :ref:`NodePath` to the :ref:`Bone2D` that this **PhysicalBone2D** isshould simulate. +The :ref:`NodePath` to the :ref:`Bone2D` that this **PhysicalBone2D** should simulate. .. rst-class:: classref-item-separator diff --git a/classes/class_physicalbone3d.rst b/classes/class_physicalbone3d.rst index a2a8288ba79..25591eea2f1 100644 --- a/classes/class_physicalbone3d.rst +++ b/classes/class_physicalbone3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/PhysicalBone3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/PhysicalBone3D.xml. .. _class_PhysicalBone3D: diff --git a/classes/class_physicalskymaterial.rst b/classes/class_physicalskymaterial.rst index 81dceddafb2..1bcbdedc55b 100644 --- a/classes/class_physicalskymaterial.rst +++ b/classes/class_physicalskymaterial.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/PhysicalSkyMaterial.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/PhysicalSkyMaterial.xml. .. _class_PhysicalSkyMaterial: diff --git a/classes/class_physicsbody2d.rst b/classes/class_physicsbody2d.rst index 96819b544eb..de01e2f0d29 100644 --- a/classes/class_physicsbody2d.rst +++ b/classes/class_physicsbody2d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/PhysicsBody2D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/PhysicsBody2D.xml. .. _class_PhysicsBody2D: diff --git a/classes/class_physicsbody3d.rst b/classes/class_physicsbody3d.rst index d5e01a76066..e57bd000fe4 100644 --- a/classes/class_physicsbody3d.rst +++ b/classes/class_physicsbody3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/PhysicsBody3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/PhysicsBody3D.xml. .. _class_PhysicsBody3D: diff --git a/classes/class_physicsdirectbodystate2d.rst b/classes/class_physicsdirectbodystate2d.rst index 1f8ef449f84..91549ffeb9d 100644 --- a/classes/class_physicsdirectbodystate2d.rst +++ b/classes/class_physicsdirectbodystate2d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/PhysicsDirectBodyState2D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/PhysicsDirectBodyState2D.xml. .. _class_PhysicsDirectBodyState2D: diff --git a/classes/class_physicsdirectbodystate2dextension.rst b/classes/class_physicsdirectbodystate2dextension.rst index e1f7344ea20..24b979719de 100644 --- a/classes/class_physicsdirectbodystate2dextension.rst +++ b/classes/class_physicsdirectbodystate2dextension.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/PhysicsDirectBodyState2DExtension.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/PhysicsDirectBodyState2DExtension.xml. .. _class_PhysicsDirectBodyState2DExtension: diff --git a/classes/class_physicsdirectbodystate3d.rst b/classes/class_physicsdirectbodystate3d.rst index 76b4414fec8..61ced5cf68a 100644 --- a/classes/class_physicsdirectbodystate3d.rst +++ b/classes/class_physicsdirectbodystate3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/PhysicsDirectBodyState3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/PhysicsDirectBodyState3D.xml. .. _class_PhysicsDirectBodyState3D: diff --git a/classes/class_physicsdirectbodystate3dextension.rst b/classes/class_physicsdirectbodystate3dextension.rst index a80d0091dda..0093da72926 100644 --- a/classes/class_physicsdirectbodystate3dextension.rst +++ b/classes/class_physicsdirectbodystate3dextension.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/PhysicsDirectBodyState3DExtension.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/PhysicsDirectBodyState3DExtension.xml. .. _class_PhysicsDirectBodyState3DExtension: diff --git a/classes/class_physicsdirectspacestate2d.rst b/classes/class_physicsdirectspacestate2d.rst index 25f7b87d0b7..bc71ba4bbae 100644 --- a/classes/class_physicsdirectspacestate2d.rst +++ b/classes/class_physicsdirectspacestate2d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/PhysicsDirectSpaceState2D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/PhysicsDirectSpaceState2D.xml. .. _class_PhysicsDirectSpaceState2D: diff --git a/classes/class_physicsdirectspacestate2dextension.rst b/classes/class_physicsdirectspacestate2dextension.rst index bc92eca4836..fee759ce4a3 100644 --- a/classes/class_physicsdirectspacestate2dextension.rst +++ b/classes/class_physicsdirectspacestate2dextension.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/PhysicsDirectSpaceState2DExtension.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/PhysicsDirectSpaceState2DExtension.xml. .. _class_PhysicsDirectSpaceState2DExtension: diff --git a/classes/class_physicsdirectspacestate3d.rst b/classes/class_physicsdirectspacestate3d.rst index 43a209d0fd6..2f963002406 100644 --- a/classes/class_physicsdirectspacestate3d.rst +++ b/classes/class_physicsdirectspacestate3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/PhysicsDirectSpaceState3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/PhysicsDirectSpaceState3D.xml. .. _class_PhysicsDirectSpaceState3D: diff --git a/classes/class_physicsdirectspacestate3dextension.rst b/classes/class_physicsdirectspacestate3dextension.rst index 0bdb05ebd1d..5f6c6908bf2 100644 --- a/classes/class_physicsdirectspacestate3dextension.rst +++ b/classes/class_physicsdirectspacestate3dextension.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/PhysicsDirectSpaceState3DExtension.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/PhysicsDirectSpaceState3DExtension.xml. .. _class_PhysicsDirectSpaceState3DExtension: diff --git a/classes/class_physicsmaterial.rst b/classes/class_physicsmaterial.rst index 9a13ede9df4..62fb6f94858 100644 --- a/classes/class_physicsmaterial.rst +++ b/classes/class_physicsmaterial.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/PhysicsMaterial.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/PhysicsMaterial.xml. .. _class_PhysicsMaterial: diff --git a/classes/class_physicspointqueryparameters2d.rst b/classes/class_physicspointqueryparameters2d.rst index c3376a8bf0b..4e5841081d0 100644 --- a/classes/class_physicspointqueryparameters2d.rst +++ b/classes/class_physicspointqueryparameters2d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/PhysicsPointQueryParameters2D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/PhysicsPointQueryParameters2D.xml. .. _class_PhysicsPointQueryParameters2D: diff --git a/classes/class_physicspointqueryparameters3d.rst b/classes/class_physicspointqueryparameters3d.rst index 13aa056a93b..f5297685578 100644 --- a/classes/class_physicspointqueryparameters3d.rst +++ b/classes/class_physicspointqueryparameters3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/PhysicsPointQueryParameters3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/PhysicsPointQueryParameters3D.xml. .. _class_PhysicsPointQueryParameters3D: diff --git a/classes/class_physicsrayqueryparameters2d.rst b/classes/class_physicsrayqueryparameters2d.rst index 25bcc0d6a7f..4c6fb2aa224 100644 --- a/classes/class_physicsrayqueryparameters2d.rst +++ b/classes/class_physicsrayqueryparameters2d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/PhysicsRayQueryParameters2D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/PhysicsRayQueryParameters2D.xml. .. _class_PhysicsRayQueryParameters2D: diff --git a/classes/class_physicsrayqueryparameters3d.rst b/classes/class_physicsrayqueryparameters3d.rst index 7699e26c05a..c979339a2c1 100644 --- a/classes/class_physicsrayqueryparameters3d.rst +++ b/classes/class_physicsrayqueryparameters3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/PhysicsRayQueryParameters3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/PhysicsRayQueryParameters3D.xml. .. _class_PhysicsRayQueryParameters3D: diff --git a/classes/class_physicsserver2d.rst b/classes/class_physicsserver2d.rst index 088b0a0ef29..532a6790a35 100644 --- a/classes/class_physicsserver2d.rst +++ b/classes/class_physicsserver2d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/PhysicsServer2D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/PhysicsServer2D.xml. .. _class_PhysicsServer2D: diff --git a/classes/class_physicsserver2dextension.rst b/classes/class_physicsserver2dextension.rst index de46c4f1b4f..0ea37376c97 100644 --- a/classes/class_physicsserver2dextension.rst +++ b/classes/class_physicsserver2dextension.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/PhysicsServer2DExtension.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/PhysicsServer2DExtension.xml. .. _class_PhysicsServer2DExtension: diff --git a/classes/class_physicsserver2dmanager.rst b/classes/class_physicsserver2dmanager.rst index 2e640ef9e28..9e3a2a0a5c4 100644 --- a/classes/class_physicsserver2dmanager.rst +++ b/classes/class_physicsserver2dmanager.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/PhysicsServer2DManager.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/PhysicsServer2DManager.xml. .. _class_PhysicsServer2DManager: diff --git a/classes/class_physicsserver3d.rst b/classes/class_physicsserver3d.rst index 5d1ea15698a..b884971ba22 100644 --- a/classes/class_physicsserver3d.rst +++ b/classes/class_physicsserver3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/PhysicsServer3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/PhysicsServer3D.xml. .. _class_PhysicsServer3D: diff --git a/classes/class_physicsserver3dextension.rst b/classes/class_physicsserver3dextension.rst index 7327a8a70f0..63b6d50e13b 100644 --- a/classes/class_physicsserver3dextension.rst +++ b/classes/class_physicsserver3dextension.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/PhysicsServer3DExtension.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/PhysicsServer3DExtension.xml. .. _class_PhysicsServer3DExtension: diff --git a/classes/class_physicsserver3dmanager.rst b/classes/class_physicsserver3dmanager.rst index 5f8e76585b2..748fe70f729 100644 --- a/classes/class_physicsserver3dmanager.rst +++ b/classes/class_physicsserver3dmanager.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/PhysicsServer3DManager.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/PhysicsServer3DManager.xml. .. _class_PhysicsServer3DManager: diff --git a/classes/class_physicsserver3drenderingserverhandler.rst b/classes/class_physicsserver3drenderingserverhandler.rst index 2dd0506ee4e..64dd4a4e484 100644 --- a/classes/class_physicsserver3drenderingserverhandler.rst +++ b/classes/class_physicsserver3drenderingserverhandler.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/PhysicsServer3DRenderingServerHandler.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/PhysicsServer3DRenderingServerHandler.xml. .. _class_PhysicsServer3DRenderingServerHandler: diff --git a/classes/class_physicsshapequeryparameters2d.rst b/classes/class_physicsshapequeryparameters2d.rst index 1b146102c78..01272caf46e 100644 --- a/classes/class_physicsshapequeryparameters2d.rst +++ b/classes/class_physicsshapequeryparameters2d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/PhysicsShapeQueryParameters2D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/PhysicsShapeQueryParameters2D.xml. .. _class_PhysicsShapeQueryParameters2D: diff --git a/classes/class_physicsshapequeryparameters3d.rst b/classes/class_physicsshapequeryparameters3d.rst index e78180dc995..9c00008d6bc 100644 --- a/classes/class_physicsshapequeryparameters3d.rst +++ b/classes/class_physicsshapequeryparameters3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/PhysicsShapeQueryParameters3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/PhysicsShapeQueryParameters3D.xml. .. _class_PhysicsShapeQueryParameters3D: diff --git a/classes/class_physicstestmotionparameters2d.rst b/classes/class_physicstestmotionparameters2d.rst index be979a5cc98..33f9c67719d 100644 --- a/classes/class_physicstestmotionparameters2d.rst +++ b/classes/class_physicstestmotionparameters2d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/PhysicsTestMotionParameters2D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/PhysicsTestMotionParameters2D.xml. .. _class_PhysicsTestMotionParameters2D: diff --git a/classes/class_physicstestmotionparameters3d.rst b/classes/class_physicstestmotionparameters3d.rst index f3387458df8..64aa4ae007b 100644 --- a/classes/class_physicstestmotionparameters3d.rst +++ b/classes/class_physicstestmotionparameters3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/PhysicsTestMotionParameters3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/PhysicsTestMotionParameters3D.xml. .. _class_PhysicsTestMotionParameters3D: diff --git a/classes/class_physicstestmotionresult2d.rst b/classes/class_physicstestmotionresult2d.rst index aa08bf5e5df..b503331d288 100644 --- a/classes/class_physicstestmotionresult2d.rst +++ b/classes/class_physicstestmotionresult2d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/PhysicsTestMotionResult2D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/PhysicsTestMotionResult2D.xml. .. _class_PhysicsTestMotionResult2D: diff --git a/classes/class_physicstestmotionresult3d.rst b/classes/class_physicstestmotionresult3d.rst index ff85e51dfa6..861727ec14c 100644 --- a/classes/class_physicstestmotionresult3d.rst +++ b/classes/class_physicstestmotionresult3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/PhysicsTestMotionResult3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/PhysicsTestMotionResult3D.xml. .. _class_PhysicsTestMotionResult3D: diff --git a/classes/class_pinjoint2d.rst b/classes/class_pinjoint2d.rst index 33406a916ab..0ca8ce2d9f4 100644 --- a/classes/class_pinjoint2d.rst +++ b/classes/class_pinjoint2d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/PinJoint2D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/PinJoint2D.xml. .. _class_PinJoint2D: diff --git a/classes/class_pinjoint3d.rst b/classes/class_pinjoint3d.rst index 2dd6ced3659..3674c91fa09 100644 --- a/classes/class_pinjoint3d.rst +++ b/classes/class_pinjoint3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/PinJoint3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/PinJoint3D.xml. .. _class_PinJoint3D: diff --git a/classes/class_placeholdercubemap.rst b/classes/class_placeholdercubemap.rst index 676ca21d6cd..f70349da096 100644 --- a/classes/class_placeholdercubemap.rst +++ b/classes/class_placeholdercubemap.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/PlaceholderCubemap.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/PlaceholderCubemap.xml. .. _class_PlaceholderCubemap: diff --git a/classes/class_placeholdercubemaparray.rst b/classes/class_placeholdercubemaparray.rst index ff480e9b3b5..b41676b884e 100644 --- a/classes/class_placeholdercubemaparray.rst +++ b/classes/class_placeholdercubemaparray.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/PlaceholderCubemapArray.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/PlaceholderCubemapArray.xml. .. _class_PlaceholderCubemapArray: diff --git a/classes/class_placeholdermaterial.rst b/classes/class_placeholdermaterial.rst index fa650d40940..30bdacc3622 100644 --- a/classes/class_placeholdermaterial.rst +++ b/classes/class_placeholdermaterial.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/PlaceholderMaterial.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/PlaceholderMaterial.xml. .. _class_PlaceholderMaterial: diff --git a/classes/class_placeholdermesh.rst b/classes/class_placeholdermesh.rst index c79e3e3668e..b39d266eaf8 100644 --- a/classes/class_placeholdermesh.rst +++ b/classes/class_placeholdermesh.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/PlaceholderMesh.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/PlaceholderMesh.xml. .. _class_PlaceholderMesh: diff --git a/classes/class_placeholdertexture2d.rst b/classes/class_placeholdertexture2d.rst index 0a6200b5eb5..4d3f72c1734 100644 --- a/classes/class_placeholdertexture2d.rst +++ b/classes/class_placeholdertexture2d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/PlaceholderTexture2D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/PlaceholderTexture2D.xml. .. _class_PlaceholderTexture2D: diff --git a/classes/class_placeholdertexture2darray.rst b/classes/class_placeholdertexture2darray.rst index b4a2089227b..153cf9249ee 100644 --- a/classes/class_placeholdertexture2darray.rst +++ b/classes/class_placeholdertexture2darray.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/PlaceholderTexture2DArray.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/PlaceholderTexture2DArray.xml. .. _class_PlaceholderTexture2DArray: diff --git a/classes/class_placeholdertexture3d.rst b/classes/class_placeholdertexture3d.rst index 84ca5baaec6..a7f858123ba 100644 --- a/classes/class_placeholdertexture3d.rst +++ b/classes/class_placeholdertexture3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/PlaceholderTexture3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/PlaceholderTexture3D.xml. .. _class_PlaceholderTexture3D: diff --git a/classes/class_placeholdertexturelayered.rst b/classes/class_placeholdertexturelayered.rst index af4141b6084..1bc0d9298f3 100644 --- a/classes/class_placeholdertexturelayered.rst +++ b/classes/class_placeholdertexturelayered.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/PlaceholderTextureLayered.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/PlaceholderTextureLayered.xml. .. _class_PlaceholderTextureLayered: diff --git a/classes/class_plane.rst b/classes/class_plane.rst index 170d3ec128a..fcf83bb5c50 100644 --- a/classes/class_plane.rst +++ b/classes/class_plane.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Plane.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Plane.xml. .. _class_Plane: diff --git a/classes/class_planemesh.rst b/classes/class_planemesh.rst index d03789737a1..66e7ae28aa5 100644 --- a/classes/class_planemesh.rst +++ b/classes/class_planemesh.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/PlaneMesh.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/PlaneMesh.xml. .. _class_PlaneMesh: diff --git a/classes/class_pointlight2d.rst b/classes/class_pointlight2d.rst index 02376873015..28c993143e9 100644 --- a/classes/class_pointlight2d.rst +++ b/classes/class_pointlight2d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/PointLight2D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/PointLight2D.xml. .. _class_PointLight2D: diff --git a/classes/class_pointmesh.rst b/classes/class_pointmesh.rst index c49ce21d134..3aea29a8478 100644 --- a/classes/class_pointmesh.rst +++ b/classes/class_pointmesh.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/PointMesh.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/PointMesh.xml. .. _class_PointMesh: diff --git a/classes/class_polygon2d.rst b/classes/class_polygon2d.rst index 1344c10f94d..c66113864ed 100644 --- a/classes/class_polygon2d.rst +++ b/classes/class_polygon2d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Polygon2D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Polygon2D.xml. .. _class_Polygon2D: diff --git a/classes/class_polygonoccluder3d.rst b/classes/class_polygonoccluder3d.rst index d414744609f..6e85c21a1f9 100644 --- a/classes/class_polygonoccluder3d.rst +++ b/classes/class_polygonoccluder3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/PolygonOccluder3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/PolygonOccluder3D.xml. .. _class_PolygonOccluder3D: diff --git a/classes/class_polygonpathfinder.rst b/classes/class_polygonpathfinder.rst index 950989059cc..0b37bfcb42e 100644 --- a/classes/class_polygonpathfinder.rst +++ b/classes/class_polygonpathfinder.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/PolygonPathFinder.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/PolygonPathFinder.xml. .. _class_PolygonPathFinder: diff --git a/classes/class_popup.rst b/classes/class_popup.rst index 3861192d018..cfab2863a6a 100644 --- a/classes/class_popup.rst +++ b/classes/class_popup.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Popup.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Popup.xml. .. _class_Popup: diff --git a/classes/class_popupmenu.rst b/classes/class_popupmenu.rst index 40dea72c773..5fe2ccbf9da 100644 --- a/classes/class_popupmenu.rst +++ b/classes/class_popupmenu.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/PopupMenu.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/PopupMenu.xml. .. _class_PopupMenu: diff --git a/classes/class_popuppanel.rst b/classes/class_popuppanel.rst index 1b8147deaa4..b00681b11e2 100644 --- a/classes/class_popuppanel.rst +++ b/classes/class_popuppanel.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/PopupPanel.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/PopupPanel.xml. .. _class_PopupPanel: diff --git a/classes/class_portablecompressedtexture2d.rst b/classes/class_portablecompressedtexture2d.rst index 95c9b903c23..1060481d221 100644 --- a/classes/class_portablecompressedtexture2d.rst +++ b/classes/class_portablecompressedtexture2d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/PortableCompressedTexture2D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/PortableCompressedTexture2D.xml. .. _class_PortableCompressedTexture2D: diff --git a/classes/class_primitivemesh.rst b/classes/class_primitivemesh.rst index e509ba18541..b0865f8756a 100644 --- a/classes/class_primitivemesh.rst +++ b/classes/class_primitivemesh.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/PrimitiveMesh.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/PrimitiveMesh.xml. .. _class_PrimitiveMesh: diff --git a/classes/class_prismmesh.rst b/classes/class_prismmesh.rst index c1a8f2f276a..9d2698c0ef1 100644 --- a/classes/class_prismmesh.rst +++ b/classes/class_prismmesh.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/PrismMesh.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/PrismMesh.xml. .. _class_PrismMesh: diff --git a/classes/class_proceduralskymaterial.rst b/classes/class_proceduralskymaterial.rst index 567f9576f26..c268dd3ea8e 100644 --- a/classes/class_proceduralskymaterial.rst +++ b/classes/class_proceduralskymaterial.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/ProceduralSkyMaterial.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/ProceduralSkyMaterial.xml. .. _class_ProceduralSkyMaterial: diff --git a/classes/class_progressbar.rst b/classes/class_progressbar.rst index 0ae4e9b1903..08eec34f80f 100644 --- a/classes/class_progressbar.rst +++ b/classes/class_progressbar.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/ProgressBar.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/ProgressBar.xml. .. _class_ProgressBar: diff --git a/classes/class_projection.rst b/classes/class_projection.rst index ffed994780c..31025c9100c 100644 --- a/classes/class_projection.rst +++ b/classes/class_projection.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Projection.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Projection.xml. .. _class_Projection: diff --git a/classes/class_projectsettings.rst b/classes/class_projectsettings.rst index f5ade681efa..bb852537ab0 100644 --- a/classes/class_projectsettings.rst +++ b/classes/class_projectsettings.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/ProjectSettings.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/ProjectSettings.xml. .. _class_ProjectSettings: diff --git a/classes/class_propertytweener.rst b/classes/class_propertytweener.rst index 6c81c07ce64..c382bd20300 100644 --- a/classes/class_propertytweener.rst +++ b/classes/class_propertytweener.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/PropertyTweener.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/PropertyTweener.xml. .. _class_PropertyTweener: diff --git a/classes/class_quadmesh.rst b/classes/class_quadmesh.rst index 54b88aec668..d81918d71c6 100644 --- a/classes/class_quadmesh.rst +++ b/classes/class_quadmesh.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/QuadMesh.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/QuadMesh.xml. .. _class_QuadMesh: diff --git a/classes/class_quadoccluder3d.rst b/classes/class_quadoccluder3d.rst index d43590b9d9e..4e5f934111c 100644 --- a/classes/class_quadoccluder3d.rst +++ b/classes/class_quadoccluder3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/QuadOccluder3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/QuadOccluder3D.xml. .. _class_QuadOccluder3D: diff --git a/classes/class_quaternion.rst b/classes/class_quaternion.rst index 5f13349915b..141d1edb376 100644 --- a/classes/class_quaternion.rst +++ b/classes/class_quaternion.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Quaternion.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Quaternion.xml. .. _class_Quaternion: diff --git a/classes/class_randomnumbergenerator.rst b/classes/class_randomnumbergenerator.rst index b68edd4d749..586e56a7913 100644 --- a/classes/class_randomnumbergenerator.rst +++ b/classes/class_randomnumbergenerator.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/RandomNumberGenerator.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/RandomNumberGenerator.xml. .. _class_RandomNumberGenerator: diff --git a/classes/class_range.rst b/classes/class_range.rst index 8fd7f9ad842..f56a4733f28 100644 --- a/classes/class_range.rst +++ b/classes/class_range.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Range.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Range.xml. .. _class_Range: diff --git a/classes/class_raycast2d.rst b/classes/class_raycast2d.rst index 878bd1d1823..c6c0f7ae0bf 100644 --- a/classes/class_raycast2d.rst +++ b/classes/class_raycast2d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/RayCast2D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/RayCast2D.xml. .. _class_RayCast2D: diff --git a/classes/class_raycast3d.rst b/classes/class_raycast3d.rst index 2437a48c481..174e549e3d0 100644 --- a/classes/class_raycast3d.rst +++ b/classes/class_raycast3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/RayCast3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/RayCast3D.xml. .. _class_RayCast3D: diff --git a/classes/class_rdattachmentformat.rst b/classes/class_rdattachmentformat.rst index 6b734ce01fc..17a07892345 100644 --- a/classes/class_rdattachmentformat.rst +++ b/classes/class_rdattachmentformat.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/RDAttachmentFormat.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/RDAttachmentFormat.xml. .. _class_RDAttachmentFormat: diff --git a/classes/class_rdframebufferpass.rst b/classes/class_rdframebufferpass.rst index 0ee84fb3747..82a994c722e 100644 --- a/classes/class_rdframebufferpass.rst +++ b/classes/class_rdframebufferpass.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/RDFramebufferPass.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/RDFramebufferPass.xml. .. _class_RDFramebufferPass: diff --git a/classes/class_rdpipelinecolorblendstate.rst b/classes/class_rdpipelinecolorblendstate.rst index eba406bedbc..09dee6f1974 100644 --- a/classes/class_rdpipelinecolorblendstate.rst +++ b/classes/class_rdpipelinecolorblendstate.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/RDPipelineColorBlendState.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/RDPipelineColorBlendState.xml. .. _class_RDPipelineColorBlendState: diff --git a/classes/class_rdpipelinecolorblendstateattachment.rst b/classes/class_rdpipelinecolorblendstateattachment.rst index 7bcda5d0d44..6a6e9d06fd3 100644 --- a/classes/class_rdpipelinecolorblendstateattachment.rst +++ b/classes/class_rdpipelinecolorblendstateattachment.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/RDPipelineColorBlendStateAttachment.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/RDPipelineColorBlendStateAttachment.xml. .. _class_RDPipelineColorBlendStateAttachment: diff --git a/classes/class_rdpipelinedepthstencilstate.rst b/classes/class_rdpipelinedepthstencilstate.rst index 1a4aa01071f..df4934ea183 100644 --- a/classes/class_rdpipelinedepthstencilstate.rst +++ b/classes/class_rdpipelinedepthstencilstate.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/RDPipelineDepthStencilState.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/RDPipelineDepthStencilState.xml. .. _class_RDPipelineDepthStencilState: diff --git a/classes/class_rdpipelinemultisamplestate.rst b/classes/class_rdpipelinemultisamplestate.rst index 52e33120ec8..655ab8661f2 100644 --- a/classes/class_rdpipelinemultisamplestate.rst +++ b/classes/class_rdpipelinemultisamplestate.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/RDPipelineMultisampleState.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/RDPipelineMultisampleState.xml. .. _class_RDPipelineMultisampleState: diff --git a/classes/class_rdpipelinerasterizationstate.rst b/classes/class_rdpipelinerasterizationstate.rst index 653da746959..8a5fc8c5f82 100644 --- a/classes/class_rdpipelinerasterizationstate.rst +++ b/classes/class_rdpipelinerasterizationstate.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/RDPipelineRasterizationState.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/RDPipelineRasterizationState.xml. .. _class_RDPipelineRasterizationState: diff --git a/classes/class_rdpipelinespecializationconstant.rst b/classes/class_rdpipelinespecializationconstant.rst index ad23de80888..11537697f38 100644 --- a/classes/class_rdpipelinespecializationconstant.rst +++ b/classes/class_rdpipelinespecializationconstant.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/RDPipelineSpecializationConstant.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/RDPipelineSpecializationConstant.xml. .. _class_RDPipelineSpecializationConstant: diff --git a/classes/class_rdsamplerstate.rst b/classes/class_rdsamplerstate.rst index 859590e02c3..06524761fd3 100644 --- a/classes/class_rdsamplerstate.rst +++ b/classes/class_rdsamplerstate.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/RDSamplerState.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/RDSamplerState.xml. .. _class_RDSamplerState: diff --git a/classes/class_rdshaderfile.rst b/classes/class_rdshaderfile.rst index c486c0b74c3..9b30d49aedb 100644 --- a/classes/class_rdshaderfile.rst +++ b/classes/class_rdshaderfile.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/RDShaderFile.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/RDShaderFile.xml. .. _class_RDShaderFile: diff --git a/classes/class_rdshadersource.rst b/classes/class_rdshadersource.rst index 49fb66a881a..4b9a48e1d61 100644 --- a/classes/class_rdshadersource.rst +++ b/classes/class_rdshadersource.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/RDShaderSource.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/RDShaderSource.xml. .. _class_RDShaderSource: diff --git a/classes/class_rdshaderspirv.rst b/classes/class_rdshaderspirv.rst index 07555fb6ebf..ab6fa97cff8 100644 --- a/classes/class_rdshaderspirv.rst +++ b/classes/class_rdshaderspirv.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/RDShaderSPIRV.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/RDShaderSPIRV.xml. .. _class_RDShaderSPIRV: diff --git a/classes/class_rdtextureformat.rst b/classes/class_rdtextureformat.rst index 7ded5665a4f..b3f81f248d3 100644 --- a/classes/class_rdtextureformat.rst +++ b/classes/class_rdtextureformat.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/RDTextureFormat.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/RDTextureFormat.xml. .. _class_RDTextureFormat: diff --git a/classes/class_rdtextureview.rst b/classes/class_rdtextureview.rst index 0f7bda35718..27c953fbf29 100644 --- a/classes/class_rdtextureview.rst +++ b/classes/class_rdtextureview.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/RDTextureView.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/RDTextureView.xml. .. _class_RDTextureView: diff --git a/classes/class_rduniform.rst b/classes/class_rduniform.rst index 8d55f14a34e..e788f98cb0e 100644 --- a/classes/class_rduniform.rst +++ b/classes/class_rduniform.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/RDUniform.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/RDUniform.xml. .. _class_RDUniform: diff --git a/classes/class_rdvertexattribute.rst b/classes/class_rdvertexattribute.rst index ec5f895ee2a..7a3b7fc1aed 100644 --- a/classes/class_rdvertexattribute.rst +++ b/classes/class_rdvertexattribute.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/RDVertexAttribute.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/RDVertexAttribute.xml. .. _class_RDVertexAttribute: diff --git a/classes/class_rect2.rst b/classes/class_rect2.rst index c1edf2ce4fc..ab68cfb22ac 100644 --- a/classes/class_rect2.rst +++ b/classes/class_rect2.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Rect2.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Rect2.xml. .. _class_Rect2: diff --git a/classes/class_rect2i.rst b/classes/class_rect2i.rst index de215463f93..80d33b488c3 100644 --- a/classes/class_rect2i.rst +++ b/classes/class_rect2i.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Rect2i.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Rect2i.xml. .. _class_Rect2i: diff --git a/classes/class_rectangleshape2d.rst b/classes/class_rectangleshape2d.rst index 0cd2a575b5a..56a4c580806 100644 --- a/classes/class_rectangleshape2d.rst +++ b/classes/class_rectangleshape2d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/RectangleShape2D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/RectangleShape2D.xml. .. _class_RectangleShape2D: diff --git a/classes/class_refcounted.rst b/classes/class_refcounted.rst index 26e68eca81b..785c619e0f6 100644 --- a/classes/class_refcounted.rst +++ b/classes/class_refcounted.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/RefCounted.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/RefCounted.xml. .. _class_RefCounted: diff --git a/classes/class_referencerect.rst b/classes/class_referencerect.rst index 87391532a05..05ae69f5324 100644 --- a/classes/class_referencerect.rst +++ b/classes/class_referencerect.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/ReferenceRect.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/ReferenceRect.xml. .. _class_ReferenceRect: diff --git a/classes/class_reflectionprobe.rst b/classes/class_reflectionprobe.rst index 78e9391ca9c..6c4953aef26 100644 --- a/classes/class_reflectionprobe.rst +++ b/classes/class_reflectionprobe.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/ReflectionProbe.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/ReflectionProbe.xml. .. _class_ReflectionProbe: diff --git a/classes/class_regex.rst b/classes/class_regex.rst index 19574c3c12e..362180ec9dc 100644 --- a/classes/class_regex.rst +++ b/classes/class_regex.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/modules/regex/doc_classes/RegEx.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/modules/regex/doc_classes/RegEx.xml. .. _class_RegEx: diff --git a/classes/class_regexmatch.rst b/classes/class_regexmatch.rst index 50ac6471aa7..3193dcf38c6 100644 --- a/classes/class_regexmatch.rst +++ b/classes/class_regexmatch.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/modules/regex/doc_classes/RegExMatch.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/modules/regex/doc_classes/RegExMatch.xml. .. _class_RegExMatch: diff --git a/classes/class_remotetransform2d.rst b/classes/class_remotetransform2d.rst index 447d030177f..739e81b887c 100644 --- a/classes/class_remotetransform2d.rst +++ b/classes/class_remotetransform2d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/RemoteTransform2D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/RemoteTransform2D.xml. .. _class_RemoteTransform2D: diff --git a/classes/class_remotetransform3d.rst b/classes/class_remotetransform3d.rst index 99e84d52e17..bdb1acb8ba6 100644 --- a/classes/class_remotetransform3d.rst +++ b/classes/class_remotetransform3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/RemoteTransform3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/RemoteTransform3D.xml. .. _class_RemoteTransform3D: diff --git a/classes/class_renderingdevice.rst b/classes/class_renderingdevice.rst index 8d259ad543e..23afb4a92ab 100644 --- a/classes/class_renderingdevice.rst +++ b/classes/class_renderingdevice.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/RenderingDevice.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/RenderingDevice.xml. .. _class_RenderingDevice: diff --git a/classes/class_renderingserver.rst b/classes/class_renderingserver.rst index f220b84b57f..d04f0b82565 100644 --- a/classes/class_renderingserver.rst +++ b/classes/class_renderingserver.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/RenderingServer.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/RenderingServer.xml. .. _class_RenderingServer: diff --git a/classes/class_resource.rst b/classes/class_resource.rst index 98e55ffd2a1..b295fa696b3 100644 --- a/classes/class_resource.rst +++ b/classes/class_resource.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Resource.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Resource.xml. .. _class_Resource: diff --git a/classes/class_resourceformatloader.rst b/classes/class_resourceformatloader.rst index 25ba5342c9a..508ca702446 100644 --- a/classes/class_resourceformatloader.rst +++ b/classes/class_resourceformatloader.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/ResourceFormatLoader.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/ResourceFormatLoader.xml. .. _class_ResourceFormatLoader: diff --git a/classes/class_resourceformatsaver.rst b/classes/class_resourceformatsaver.rst index e27850607dd..0831813f082 100644 --- a/classes/class_resourceformatsaver.rst +++ b/classes/class_resourceformatsaver.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/ResourceFormatSaver.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/ResourceFormatSaver.xml. .. _class_ResourceFormatSaver: diff --git a/classes/class_resourceimporter.rst b/classes/class_resourceimporter.rst index 083ebaaa501..8c896a8269f 100644 --- a/classes/class_resourceimporter.rst +++ b/classes/class_resourceimporter.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/ResourceImporter.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/ResourceImporter.xml. .. _class_ResourceImporter: diff --git a/classes/class_resourceloader.rst b/classes/class_resourceloader.rst index aa6327c63c9..9435e5c5058 100644 --- a/classes/class_resourceloader.rst +++ b/classes/class_resourceloader.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/ResourceLoader.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/ResourceLoader.xml. .. _class_ResourceLoader: @@ -192,6 +192,14 @@ An optional ``type_hint`` can be used to further specify the :ref:`Resource` to get their components. + +:: + + for dep in ResourceLoader.get_dependencies(path): + print(dep.get_slice("::", 0)) # Prints UID. + print(dep.get_slice("::", 2)) # Prints path. + .. rst-class:: classref-item-separator ---- diff --git a/classes/class_resourcepreloader.rst b/classes/class_resourcepreloader.rst index f815155376a..4261648db8c 100644 --- a/classes/class_resourcepreloader.rst +++ b/classes/class_resourcepreloader.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/ResourcePreloader.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/ResourcePreloader.xml. .. _class_ResourcePreloader: diff --git a/classes/class_resourcesaver.rst b/classes/class_resourcesaver.rst index 9e1992a05bf..c9b58e5be96 100644 --- a/classes/class_resourcesaver.rst +++ b/classes/class_resourcesaver.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/ResourceSaver.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/ResourceSaver.xml. .. _class_ResourceSaver: diff --git a/classes/class_resourceuid.rst b/classes/class_resourceuid.rst index 992407c106d..a2c0b493f4c 100644 --- a/classes/class_resourceuid.rst +++ b/classes/class_resourceuid.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/ResourceUID.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/ResourceUID.xml. .. _class_ResourceUID: diff --git a/classes/class_ribbontrailmesh.rst b/classes/class_ribbontrailmesh.rst index f4a37517994..502209e5f79 100644 --- a/classes/class_ribbontrailmesh.rst +++ b/classes/class_ribbontrailmesh.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/RibbonTrailMesh.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/RibbonTrailMesh.xml. .. _class_RibbonTrailMesh: diff --git a/classes/class_richtexteffect.rst b/classes/class_richtexteffect.rst index 632b2690357..91fb56e3f5e 100644 --- a/classes/class_richtexteffect.rst +++ b/classes/class_richtexteffect.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/RichTextEffect.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/RichTextEffect.xml. .. _class_RichTextEffect: diff --git a/classes/class_richtextlabel.rst b/classes/class_richtextlabel.rst index 951282e7406..6515a471ba5 100644 --- a/classes/class_richtextlabel.rst +++ b/classes/class_richtextlabel.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/RichTextLabel.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/RichTextLabel.xml. .. _class_RichTextLabel: diff --git a/classes/class_rid.rst b/classes/class_rid.rst index 656a6476539..26b7ff5255c 100644 --- a/classes/class_rid.rst +++ b/classes/class_rid.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/RID.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/RID.xml. .. _class_RID: diff --git a/classes/class_rigidbody2d.rst b/classes/class_rigidbody2d.rst index 38d697e03f0..72b6452ae6d 100644 --- a/classes/class_rigidbody2d.rst +++ b/classes/class_rigidbody2d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/RigidBody2D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/RigidBody2D.xml. .. _class_RigidBody2D: @@ -500,7 +500,7 @@ See :ref:`add_constant_torque`. - void **set_contact_monitor** **(** :ref:`bool` value **)** - :ref:`bool` **is_contact_monitor_enabled** **(** **)** -If ``true``, the RigidBody2D will emit signals when it collides with another RigidBody2D. +If ``true``, the RigidBody2D will emit signals when it collides with another body. \ **Note:** By default the maximum contacts reported is set to 0, meaning nothing will be recorded, see :ref:`max_contacts_reported`. diff --git a/classes/class_rigidbody3d.rst b/classes/class_rigidbody3d.rst index b85be2c0efe..f399269eb1a 100644 --- a/classes/class_rigidbody3d.rst +++ b/classes/class_rigidbody3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/RigidBody3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/RigidBody3D.xml. .. _class_RigidBody3D: @@ -470,7 +470,7 @@ See :ref:`add_constant_torque`. - void **set_contact_monitor** **(** :ref:`bool` value **)** - :ref:`bool` **is_contact_monitor_enabled** **(** **)** -If ``true``, the RigidBody3D will emit signals when it collides with another RigidBody3D. +If ``true``, the RigidBody3D will emit signals when it collides with another body. \ **Note:** By default the maximum contacts reported is set to 0, meaning nothing will be recorded, see :ref:`max_contacts_reported`. diff --git a/classes/class_rootmotionview.rst b/classes/class_rootmotionview.rst index edf76e763c6..fcb4a16e6dc 100644 --- a/classes/class_rootmotionview.rst +++ b/classes/class_rootmotionview.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/RootMotionView.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/RootMotionView.xml. .. _class_RootMotionView: diff --git a/classes/class_scenemultiplayer.rst b/classes/class_scenemultiplayer.rst index 053fa59023c..c6c7e5b1dbc 100644 --- a/classes/class_scenemultiplayer.rst +++ b/classes/class_scenemultiplayer.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/modules/multiplayer/doc_classes/SceneMultiplayer.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/modules/multiplayer/doc_classes/SceneMultiplayer.xml. .. _class_SceneMultiplayer: diff --git a/classes/class_scenereplicationconfig.rst b/classes/class_scenereplicationconfig.rst index ea7f3dc1976..c81023f02f1 100644 --- a/classes/class_scenereplicationconfig.rst +++ b/classes/class_scenereplicationconfig.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/modules/multiplayer/doc_classes/SceneReplicationConfig.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/modules/multiplayer/doc_classes/SceneReplicationConfig.xml. .. _class_SceneReplicationConfig: diff --git a/classes/class_scenestate.rst b/classes/class_scenestate.rst index ca2aa962285..5c9e53dff19 100644 --- a/classes/class_scenestate.rst +++ b/classes/class_scenestate.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/SceneState.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/SceneState.xml. .. _class_SceneState: diff --git a/classes/class_scenetree.rst b/classes/class_scenetree.rst index 2f6428f6e65..7e424fb9db6 100644 --- a/classes/class_scenetree.rst +++ b/classes/class_scenetree.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/SceneTree.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/SceneTree.xml. .. _class_SceneTree: diff --git a/classes/class_scenetreetimer.rst b/classes/class_scenetreetimer.rst index f0ad4101c19..6a46d8d4c8c 100644 --- a/classes/class_scenetreetimer.rst +++ b/classes/class_scenetreetimer.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/SceneTreeTimer.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/SceneTreeTimer.xml. .. _class_SceneTreeTimer: diff --git a/classes/class_script.rst b/classes/class_script.rst index 86ed908e84d..8f1454ab1c8 100644 --- a/classes/class_script.rst +++ b/classes/class_script.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Script.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Script.xml. .. _class_Script: diff --git a/classes/class_scriptcreatedialog.rst b/classes/class_scriptcreatedialog.rst index 68880c39dae..7ce8cd51f66 100644 --- a/classes/class_scriptcreatedialog.rst +++ b/classes/class_scriptcreatedialog.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/ScriptCreateDialog.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/ScriptCreateDialog.xml. .. _class_ScriptCreateDialog: diff --git a/classes/class_scripteditor.rst b/classes/class_scripteditor.rst index 164f44009fa..396d61248f1 100644 --- a/classes/class_scripteditor.rst +++ b/classes/class_scripteditor.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/ScriptEditor.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/ScriptEditor.xml. .. _class_ScriptEditor: diff --git a/classes/class_scripteditorbase.rst b/classes/class_scripteditorbase.rst index e9d2508ddd4..39bb8047144 100644 --- a/classes/class_scripteditorbase.rst +++ b/classes/class_scripteditorbase.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/ScriptEditorBase.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/ScriptEditorBase.xml. .. _class_ScriptEditorBase: diff --git a/classes/class_scriptextension.rst b/classes/class_scriptextension.rst index fd62ff59f44..23a8ca49b77 100644 --- a/classes/class_scriptextension.rst +++ b/classes/class_scriptextension.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/ScriptExtension.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/ScriptExtension.xml. .. _class_ScriptExtension: diff --git a/classes/class_scriptlanguage.rst b/classes/class_scriptlanguage.rst index ba55ef0bf34..f98692070ad 100644 --- a/classes/class_scriptlanguage.rst +++ b/classes/class_scriptlanguage.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/ScriptLanguage.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/ScriptLanguage.xml. .. _class_ScriptLanguage: diff --git a/classes/class_scriptlanguageextension.rst b/classes/class_scriptlanguageextension.rst index 4e948156ed1..4757c38eef8 100644 --- a/classes/class_scriptlanguageextension.rst +++ b/classes/class_scriptlanguageextension.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/ScriptLanguageExtension.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/ScriptLanguageExtension.xml. .. _class_ScriptLanguageExtension: diff --git a/classes/class_scrollbar.rst b/classes/class_scrollbar.rst index a21a383fc36..5eca662e4e4 100644 --- a/classes/class_scrollbar.rst +++ b/classes/class_scrollbar.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/ScrollBar.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/ScrollBar.xml. .. _class_ScrollBar: diff --git a/classes/class_scrollcontainer.rst b/classes/class_scrollcontainer.rst index 235a264b199..5d2991da993 100644 --- a/classes/class_scrollcontainer.rst +++ b/classes/class_scrollcontainer.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/ScrollContainer.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/ScrollContainer.xml. .. _class_ScrollContainer: diff --git a/classes/class_segmentshape2d.rst b/classes/class_segmentshape2d.rst index 43f4f76a080..3b2e72e55d4 100644 --- a/classes/class_segmentshape2d.rst +++ b/classes/class_segmentshape2d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/SegmentShape2D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/SegmentShape2D.xml. .. _class_SegmentShape2D: diff --git a/classes/class_semaphore.rst b/classes/class_semaphore.rst index 58a7cd0f58a..714cf13d2b0 100644 --- a/classes/class_semaphore.rst +++ b/classes/class_semaphore.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Semaphore.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Semaphore.xml. .. _class_Semaphore: diff --git a/classes/class_separationrayshape2d.rst b/classes/class_separationrayshape2d.rst index d4c3763411a..1ee858e42a3 100644 --- a/classes/class_separationrayshape2d.rst +++ b/classes/class_separationrayshape2d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/SeparationRayShape2D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/SeparationRayShape2D.xml. .. _class_SeparationRayShape2D: diff --git a/classes/class_separationrayshape3d.rst b/classes/class_separationrayshape3d.rst index 235fbe16981..25a06612717 100644 --- a/classes/class_separationrayshape3d.rst +++ b/classes/class_separationrayshape3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/SeparationRayShape3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/SeparationRayShape3D.xml. .. _class_SeparationRayShape3D: diff --git a/classes/class_separator.rst b/classes/class_separator.rst index e9e785349b5..4c2f9765ab2 100644 --- a/classes/class_separator.rst +++ b/classes/class_separator.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Separator.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Separator.xml. .. _class_Separator: diff --git a/classes/class_shader.rst b/classes/class_shader.rst index 5fe28caff6e..25690998d9a 100644 --- a/classes/class_shader.rst +++ b/classes/class_shader.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Shader.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Shader.xml. .. _class_Shader: diff --git a/classes/class_shaderglobalsoverride.rst b/classes/class_shaderglobalsoverride.rst index 84032084e1b..995f3fe8da6 100644 --- a/classes/class_shaderglobalsoverride.rst +++ b/classes/class_shaderglobalsoverride.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/ShaderGlobalsOverride.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/ShaderGlobalsOverride.xml. .. _class_ShaderGlobalsOverride: diff --git a/classes/class_shaderinclude.rst b/classes/class_shaderinclude.rst index 476aa7fbac9..bc6c8cc9f24 100644 --- a/classes/class_shaderinclude.rst +++ b/classes/class_shaderinclude.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/ShaderInclude.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/ShaderInclude.xml. .. _class_ShaderInclude: diff --git a/classes/class_shadermaterial.rst b/classes/class_shadermaterial.rst index d686fdeb9e2..cdc55b18807 100644 --- a/classes/class_shadermaterial.rst +++ b/classes/class_shadermaterial.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/ShaderMaterial.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/ShaderMaterial.xml. .. _class_ShaderMaterial: diff --git a/classes/class_shape2d.rst b/classes/class_shape2d.rst index c0c9c2c379a..00337fee92f 100644 --- a/classes/class_shape2d.rst +++ b/classes/class_shape2d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Shape2D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Shape2D.xml. .. _class_Shape2D: diff --git a/classes/class_shape3d.rst b/classes/class_shape3d.rst index eaad3974c95..1f6284dc4d7 100644 --- a/classes/class_shape3d.rst +++ b/classes/class_shape3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Shape3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Shape3D.xml. .. _class_Shape3D: diff --git a/classes/class_shapecast2d.rst b/classes/class_shapecast2d.rst index 570813d2586..30bd44818d9 100644 --- a/classes/class_shapecast2d.rst +++ b/classes/class_shapecast2d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/ShapeCast2D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/ShapeCast2D.xml. .. _class_ShapeCast2D: diff --git a/classes/class_shapecast3d.rst b/classes/class_shapecast3d.rst index 1916538052a..9f456fe0e05 100644 --- a/classes/class_shapecast3d.rst +++ b/classes/class_shapecast3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/ShapeCast3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/ShapeCast3D.xml. .. _class_ShapeCast3D: diff --git a/classes/class_shortcut.rst b/classes/class_shortcut.rst index 2b6275b6b7b..e5a1d190f11 100644 --- a/classes/class_shortcut.rst +++ b/classes/class_shortcut.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Shortcut.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Shortcut.xml. .. _class_Shortcut: diff --git a/classes/class_signal.rst b/classes/class_signal.rst index e0b9593f072..8333fa3d9aa 100644 --- a/classes/class_signal.rst +++ b/classes/class_signal.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Signal.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Signal.xml. .. _class_Signal: diff --git a/classes/class_skeleton2d.rst b/classes/class_skeleton2d.rst index 10ba21be770..4d580373c04 100644 --- a/classes/class_skeleton2d.rst +++ b/classes/class_skeleton2d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Skeleton2D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Skeleton2D.xml. .. _class_Skeleton2D: diff --git a/classes/class_skeleton3d.rst b/classes/class_skeleton3d.rst index adacecb9f18..5ab14404ee5 100644 --- a/classes/class_skeleton3d.rst +++ b/classes/class_skeleton3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Skeleton3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Skeleton3D.xml. .. _class_Skeleton3D: diff --git a/classes/class_skeletonik3d.rst b/classes/class_skeletonik3d.rst index 1f4643383e8..3d4322a213c 100644 --- a/classes/class_skeletonik3d.rst +++ b/classes/class_skeletonik3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/SkeletonIK3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/SkeletonIK3D.xml. .. _class_SkeletonIK3D: diff --git a/classes/class_skeletonmodification2d.rst b/classes/class_skeletonmodification2d.rst index 3babd38f9f3..5b707c3e7e5 100644 --- a/classes/class_skeletonmodification2d.rst +++ b/classes/class_skeletonmodification2d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/SkeletonModification2D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/SkeletonModification2D.xml. .. _class_SkeletonModification2D: diff --git a/classes/class_skeletonmodification2dccdik.rst b/classes/class_skeletonmodification2dccdik.rst index 4e1d3983a30..aef9a6d72a5 100644 --- a/classes/class_skeletonmodification2dccdik.rst +++ b/classes/class_skeletonmodification2dccdik.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/SkeletonModification2DCCDIK.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/SkeletonModification2DCCDIK.xml. .. _class_SkeletonModification2DCCDIK: diff --git a/classes/class_skeletonmodification2dfabrik.rst b/classes/class_skeletonmodification2dfabrik.rst index 2279b8139d2..f019076e237 100644 --- a/classes/class_skeletonmodification2dfabrik.rst +++ b/classes/class_skeletonmodification2dfabrik.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/SkeletonModification2DFABRIK.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/SkeletonModification2DFABRIK.xml. .. _class_SkeletonModification2DFABRIK: diff --git a/classes/class_skeletonmodification2djiggle.rst b/classes/class_skeletonmodification2djiggle.rst index 3f999f4dcca..6b2967628f5 100644 --- a/classes/class_skeletonmodification2djiggle.rst +++ b/classes/class_skeletonmodification2djiggle.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/SkeletonModification2DJiggle.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/SkeletonModification2DJiggle.xml. .. _class_SkeletonModification2DJiggle: diff --git a/classes/class_skeletonmodification2dlookat.rst b/classes/class_skeletonmodification2dlookat.rst index ca2c20e3b1c..c4a1c69fd63 100644 --- a/classes/class_skeletonmodification2dlookat.rst +++ b/classes/class_skeletonmodification2dlookat.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/SkeletonModification2DLookAt.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/SkeletonModification2DLookAt.xml. .. _class_SkeletonModification2DLookAt: diff --git a/classes/class_skeletonmodification2dphysicalbones.rst b/classes/class_skeletonmodification2dphysicalbones.rst index 107df698e97..b0cef5766f9 100644 --- a/classes/class_skeletonmodification2dphysicalbones.rst +++ b/classes/class_skeletonmodification2dphysicalbones.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/SkeletonModification2DPhysicalBones.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/SkeletonModification2DPhysicalBones.xml. .. _class_SkeletonModification2DPhysicalBones: diff --git a/classes/class_skeletonmodification2dstackholder.rst b/classes/class_skeletonmodification2dstackholder.rst index bdf13188264..142afc54826 100644 --- a/classes/class_skeletonmodification2dstackholder.rst +++ b/classes/class_skeletonmodification2dstackholder.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/SkeletonModification2DStackHolder.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/SkeletonModification2DStackHolder.xml. .. _class_SkeletonModification2DStackHolder: diff --git a/classes/class_skeletonmodification2dtwoboneik.rst b/classes/class_skeletonmodification2dtwoboneik.rst index c9be46b684e..c48ef500cd4 100644 --- a/classes/class_skeletonmodification2dtwoboneik.rst +++ b/classes/class_skeletonmodification2dtwoboneik.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/SkeletonModification2DTwoBoneIK.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/SkeletonModification2DTwoBoneIK.xml. .. _class_SkeletonModification2DTwoBoneIK: diff --git a/classes/class_skeletonmodificationstack2d.rst b/classes/class_skeletonmodificationstack2d.rst index 9c1d84d746c..c7ff5b01fc9 100644 --- a/classes/class_skeletonmodificationstack2d.rst +++ b/classes/class_skeletonmodificationstack2d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/SkeletonModificationStack2D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/SkeletonModificationStack2D.xml. .. _class_SkeletonModificationStack2D: diff --git a/classes/class_skeletonprofile.rst b/classes/class_skeletonprofile.rst index 0080d0a1525..f28c31c5aff 100644 --- a/classes/class_skeletonprofile.rst +++ b/classes/class_skeletonprofile.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/SkeletonProfile.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/SkeletonProfile.xml. .. _class_SkeletonProfile: diff --git a/classes/class_skeletonprofilehumanoid.rst b/classes/class_skeletonprofilehumanoid.rst index eb65d0cc9b7..6f3fa0a9807 100644 --- a/classes/class_skeletonprofilehumanoid.rst +++ b/classes/class_skeletonprofilehumanoid.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/SkeletonProfileHumanoid.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/SkeletonProfileHumanoid.xml. .. _class_SkeletonProfileHumanoid: diff --git a/classes/class_skin.rst b/classes/class_skin.rst index 298fa7e6b07..294c7c03514 100644 --- a/classes/class_skin.rst +++ b/classes/class_skin.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Skin.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Skin.xml. .. _class_Skin: diff --git a/classes/class_skinreference.rst b/classes/class_skinreference.rst index d6b8440abef..adcc09eedee 100644 --- a/classes/class_skinreference.rst +++ b/classes/class_skinreference.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/SkinReference.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/SkinReference.xml. .. _class_SkinReference: diff --git a/classes/class_sky.rst b/classes/class_sky.rst index 97eccda2b31..cf37f32f600 100644 --- a/classes/class_sky.rst +++ b/classes/class_sky.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Sky.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Sky.xml. .. _class_Sky: diff --git a/classes/class_slider.rst b/classes/class_slider.rst index 1496f3bad8a..3c210dfe2d9 100644 --- a/classes/class_slider.rst +++ b/classes/class_slider.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Slider.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Slider.xml. .. _class_Slider: diff --git a/classes/class_sliderjoint3d.rst b/classes/class_sliderjoint3d.rst index b1bb94c0b05..0e27be582de 100644 --- a/classes/class_sliderjoint3d.rst +++ b/classes/class_sliderjoint3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/SliderJoint3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/SliderJoint3D.xml. .. _class_SliderJoint3D: diff --git a/classes/class_softbody3d.rst b/classes/class_softbody3d.rst index 12069bfcbb5..36cdad47da3 100644 --- a/classes/class_softbody3d.rst +++ b/classes/class_softbody3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/SoftBody3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/SoftBody3D.xml. .. _class_SoftBody3D: diff --git a/classes/class_spheremesh.rst b/classes/class_spheremesh.rst index c64636372d4..d39eb1a1dd7 100644 --- a/classes/class_spheremesh.rst +++ b/classes/class_spheremesh.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/SphereMesh.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/SphereMesh.xml. .. _class_SphereMesh: diff --git a/classes/class_sphereoccluder3d.rst b/classes/class_sphereoccluder3d.rst index a2548c81ca8..c09b395cb8b 100644 --- a/classes/class_sphereoccluder3d.rst +++ b/classes/class_sphereoccluder3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/SphereOccluder3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/SphereOccluder3D.xml. .. _class_SphereOccluder3D: diff --git a/classes/class_sphereshape3d.rst b/classes/class_sphereshape3d.rst index 4a1b4c87434..adf96bc1d9c 100644 --- a/classes/class_sphereshape3d.rst +++ b/classes/class_sphereshape3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/SphereShape3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/SphereShape3D.xml. .. _class_SphereShape3D: diff --git a/classes/class_spinbox.rst b/classes/class_spinbox.rst index 0537355a96b..4ebf9fb0e53 100644 --- a/classes/class_spinbox.rst +++ b/classes/class_spinbox.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/SpinBox.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/SpinBox.xml. .. _class_SpinBox: diff --git a/classes/class_splitcontainer.rst b/classes/class_splitcontainer.rst index fda75fd3d4c..507eef44f30 100644 --- a/classes/class_splitcontainer.rst +++ b/classes/class_splitcontainer.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/SplitContainer.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/SplitContainer.xml. .. _class_SplitContainer: diff --git a/classes/class_spotlight3d.rst b/classes/class_spotlight3d.rst index 39e33de1a5b..11f44fe932e 100644 --- a/classes/class_spotlight3d.rst +++ b/classes/class_spotlight3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/SpotLight3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/SpotLight3D.xml. .. _class_SpotLight3D: diff --git a/classes/class_springarm3d.rst b/classes/class_springarm3d.rst index f18921578a2..478f2e2b9cf 100644 --- a/classes/class_springarm3d.rst +++ b/classes/class_springarm3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/SpringArm3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/SpringArm3D.xml. .. _class_SpringArm3D: diff --git a/classes/class_sprite2d.rst b/classes/class_sprite2d.rst index 51bced63328..492fa3be758 100644 --- a/classes/class_sprite2d.rst +++ b/classes/class_sprite2d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Sprite2D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Sprite2D.xml. .. _class_Sprite2D: diff --git a/classes/class_sprite3d.rst b/classes/class_sprite3d.rst index 42adf56d105..4da6c5b6ce8 100644 --- a/classes/class_sprite3d.rst +++ b/classes/class_sprite3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Sprite3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Sprite3D.xml. .. _class_Sprite3D: diff --git a/classes/class_spritebase3d.rst b/classes/class_spritebase3d.rst index 459f08751c2..10daad99e89 100644 --- a/classes/class_spritebase3d.rst +++ b/classes/class_spritebase3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/SpriteBase3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/SpriteBase3D.xml. .. _class_SpriteBase3D: diff --git a/classes/class_spriteframes.rst b/classes/class_spriteframes.rst index a0c81ad686a..e469e5070e5 100644 --- a/classes/class_spriteframes.rst +++ b/classes/class_spriteframes.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/SpriteFrames.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/SpriteFrames.xml. .. _class_SpriteFrames: diff --git a/classes/class_standardmaterial3d.rst b/classes/class_standardmaterial3d.rst index ec75bd7f541..b8aaa9902c2 100644 --- a/classes/class_standardmaterial3d.rst +++ b/classes/class_standardmaterial3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/StandardMaterial3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/StandardMaterial3D.xml. .. _class_StandardMaterial3D: diff --git a/classes/class_staticbody2d.rst b/classes/class_staticbody2d.rst index 0fc82368a11..3fc43996d71 100644 --- a/classes/class_staticbody2d.rst +++ b/classes/class_staticbody2d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/StaticBody2D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/StaticBody2D.xml. .. _class_StaticBody2D: diff --git a/classes/class_staticbody3d.rst b/classes/class_staticbody3d.rst index 7a638e881ef..d6cf016937f 100644 --- a/classes/class_staticbody3d.rst +++ b/classes/class_staticbody3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/StaticBody3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/StaticBody3D.xml. .. _class_StaticBody3D: diff --git a/classes/class_streampeer.rst b/classes/class_streampeer.rst index 5f490f03107..7dd45521ed7 100644 --- a/classes/class_streampeer.rst +++ b/classes/class_streampeer.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/StreamPeer.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/StreamPeer.xml. .. _class_StreamPeer: diff --git a/classes/class_streampeerbuffer.rst b/classes/class_streampeerbuffer.rst index 8390241dcaf..4a35193c201 100644 --- a/classes/class_streampeerbuffer.rst +++ b/classes/class_streampeerbuffer.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/StreamPeerBuffer.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/StreamPeerBuffer.xml. .. _class_StreamPeerBuffer: diff --git a/classes/class_streampeerextension.rst b/classes/class_streampeerextension.rst index 615c113b65d..b640cfcd95e 100644 --- a/classes/class_streampeerextension.rst +++ b/classes/class_streampeerextension.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/StreamPeerExtension.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/StreamPeerExtension.xml. .. _class_StreamPeerExtension: diff --git a/classes/class_streampeergzip.rst b/classes/class_streampeergzip.rst index 6418c70b9dd..af08a1d7558 100644 --- a/classes/class_streampeergzip.rst +++ b/classes/class_streampeergzip.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/StreamPeerGZIP.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/StreamPeerGZIP.xml. .. _class_StreamPeerGZIP: diff --git a/classes/class_streampeertcp.rst b/classes/class_streampeertcp.rst index 4f7d6e3c006..180c2711888 100644 --- a/classes/class_streampeertcp.rst +++ b/classes/class_streampeertcp.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/StreamPeerTCP.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/StreamPeerTCP.xml. .. _class_StreamPeerTCP: diff --git a/classes/class_streampeertls.rst b/classes/class_streampeertls.rst index 9678facfceb..d9b3f2ab42f 100644 --- a/classes/class_streampeertls.rst +++ b/classes/class_streampeertls.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/StreamPeerTLS.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/StreamPeerTLS.xml. .. _class_StreamPeerTLS: diff --git a/classes/class_string.rst b/classes/class_string.rst index bcdd862e31a..f4e6a04cf7b 100644 --- a/classes/class_string.rst +++ b/classes/class_string.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/String.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/String.xml. .. _class_String: @@ -1780,11 +1780,11 @@ Converts the string representing a decimal number into a :ref:`float` **validate_node_name** **(** **)** |const| -Returns a copy of the string with all characters that are not allowed in :ref:`Node.name` removed (``.`` ``:`` ``@`` ``/`` ``"`` ``%``). +Returns a copy of the string with all characters that are not allowed in :ref:`Node.name` (``.`` ``:`` ``@`` ``/`` ``"`` ``%``) replaced with underscores. .. rst-class:: classref-item-separator diff --git a/classes/class_stringname.rst b/classes/class_stringname.rst index bbc09ef6a4d..13779ca0a3a 100644 --- a/classes/class_stringname.rst +++ b/classes/class_stringname.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/StringName.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/StringName.xml. .. _class_StringName: @@ -1860,7 +1860,7 @@ Returns a copy of the string with all characters that are not allowed in :ref:`i :ref:`String` **validate_node_name** **(** **)** |const| -Returns a copy of the string with all characters that are not allowed in :ref:`Node.name` removed (``.`` ``:`` ``@`` ``/`` ``"`` ``%``). +Returns a copy of the string with all characters that are not allowed in :ref:`Node.name` (``.`` ``:`` ``@`` ``/`` ``"`` ``%``) replaced with underscores. .. rst-class:: classref-item-separator diff --git a/classes/class_stylebox.rst b/classes/class_stylebox.rst index 093b43c1086..a53aa7df2f4 100644 --- a/classes/class_stylebox.rst +++ b/classes/class_stylebox.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/StyleBox.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/StyleBox.xml. .. _class_StyleBox: diff --git a/classes/class_styleboxempty.rst b/classes/class_styleboxempty.rst index 3c0255d0ad2..e968764b233 100644 --- a/classes/class_styleboxempty.rst +++ b/classes/class_styleboxempty.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/StyleBoxEmpty.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/StyleBoxEmpty.xml. .. _class_StyleBoxEmpty: diff --git a/classes/class_styleboxflat.rst b/classes/class_styleboxflat.rst index 36a65dcb709..a537dc5b30a 100644 --- a/classes/class_styleboxflat.rst +++ b/classes/class_styleboxflat.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/StyleBoxFlat.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/StyleBoxFlat.xml. .. _class_StyleBoxFlat: diff --git a/classes/class_styleboxline.rst b/classes/class_styleboxline.rst index 6e39da7d8c9..315c7df860e 100644 --- a/classes/class_styleboxline.rst +++ b/classes/class_styleboxline.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/StyleBoxLine.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/StyleBoxLine.xml. .. _class_StyleBoxLine: diff --git a/classes/class_styleboxtexture.rst b/classes/class_styleboxtexture.rst index 8e8749cedc2..14a5ac80d93 100644 --- a/classes/class_styleboxtexture.rst +++ b/classes/class_styleboxtexture.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/StyleBoxTexture.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/StyleBoxTexture.xml. .. _class_StyleBoxTexture: diff --git a/classes/class_subviewport.rst b/classes/class_subviewport.rst index 890a7a73acb..81eff93a5dc 100644 --- a/classes/class_subviewport.rst +++ b/classes/class_subviewport.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/SubViewport.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/SubViewport.xml. .. _class_SubViewport: diff --git a/classes/class_subviewportcontainer.rst b/classes/class_subviewportcontainer.rst index 3ef8a3d3c3f..26763fa67ab 100644 --- a/classes/class_subviewportcontainer.rst +++ b/classes/class_subviewportcontainer.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/SubViewportContainer.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/SubViewportContainer.xml. .. _class_SubViewportContainer: diff --git a/classes/class_surfacetool.rst b/classes/class_surfacetool.rst index dd062f67203..e776e6d75f0 100644 --- a/classes/class_surfacetool.rst +++ b/classes/class_surfacetool.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/SurfaceTool.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/SurfaceTool.xml. .. _class_SurfaceTool: diff --git a/classes/class_syntaxhighlighter.rst b/classes/class_syntaxhighlighter.rst index e10c1fa1ba3..e053b09e6dd 100644 --- a/classes/class_syntaxhighlighter.rst +++ b/classes/class_syntaxhighlighter.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/SyntaxHighlighter.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/SyntaxHighlighter.xml. .. _class_SyntaxHighlighter: diff --git a/classes/class_systemfont.rst b/classes/class_systemfont.rst index 3c075609dec..fae4350be37 100644 --- a/classes/class_systemfont.rst +++ b/classes/class_systemfont.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/SystemFont.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/SystemFont.xml. .. _class_SystemFont: diff --git a/classes/class_tabbar.rst b/classes/class_tabbar.rst index eb76fd31b26..1cd447fc46e 100644 --- a/classes/class_tabbar.rst +++ b/classes/class_tabbar.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/TabBar.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/TabBar.xml. .. _class_TabBar: diff --git a/classes/class_tabcontainer.rst b/classes/class_tabcontainer.rst index 99ad5e9f345..aae2db11e9f 100644 --- a/classes/class_tabcontainer.rst +++ b/classes/class_tabcontainer.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/TabContainer.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/TabContainer.xml. .. _class_TabContainer: diff --git a/classes/class_tcpserver.rst b/classes/class_tcpserver.rst index 7f52bfe32a6..aee7834010a 100644 --- a/classes/class_tcpserver.rst +++ b/classes/class_tcpserver.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/TCPServer.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/TCPServer.xml. .. _class_TCPServer: diff --git a/classes/class_textedit.rst b/classes/class_textedit.rst index 20f3b9b670b..263e18a8229 100644 --- a/classes/class_textedit.rst +++ b/classes/class_textedit.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/TextEdit.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/TextEdit.xml. .. _class_TextEdit: diff --git a/classes/class_textline.rst b/classes/class_textline.rst index f9c7092a718..9270c0e670b 100644 --- a/classes/class_textline.rst +++ b/classes/class_textline.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/TextLine.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/TextLine.xml. .. _class_TextLine: diff --git a/classes/class_textmesh.rst b/classes/class_textmesh.rst index 685512b9fea..faf86dd2f52 100644 --- a/classes/class_textmesh.rst +++ b/classes/class_textmesh.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/TextMesh.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/TextMesh.xml. .. _class_TextMesh: diff --git a/classes/class_textparagraph.rst b/classes/class_textparagraph.rst index a549c5f1cf3..db76ef62954 100644 --- a/classes/class_textparagraph.rst +++ b/classes/class_textparagraph.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/TextParagraph.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/TextParagraph.xml. .. _class_TextParagraph: diff --git a/classes/class_textserver.rst b/classes/class_textserver.rst index 86f4c328f54..38b4068e134 100644 --- a/classes/class_textserver.rst +++ b/classes/class_textserver.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/TextServer.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/TextServer.xml. .. _class_TextServer: diff --git a/classes/class_textserveradvanced.rst b/classes/class_textserveradvanced.rst index 819fbea5f15..c9108439dcb 100644 --- a/classes/class_textserveradvanced.rst +++ b/classes/class_textserveradvanced.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/modules/text_server_adv/doc_classes/TextServerAdvanced.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/modules/text_server_adv/doc_classes/TextServerAdvanced.xml. .. _class_TextServerAdvanced: diff --git a/classes/class_textserverdummy.rst b/classes/class_textserverdummy.rst index 8e65c928b71..ed7ed7b8cb7 100644 --- a/classes/class_textserverdummy.rst +++ b/classes/class_textserverdummy.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/TextServerDummy.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/TextServerDummy.xml. .. _class_TextServerDummy: diff --git a/classes/class_textserverextension.rst b/classes/class_textserverextension.rst index 3427cd3cc28..1dfdb958e11 100644 --- a/classes/class_textserverextension.rst +++ b/classes/class_textserverextension.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/TextServerExtension.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/TextServerExtension.xml. .. _class_TextServerExtension: diff --git a/classes/class_textserverfallback.rst b/classes/class_textserverfallback.rst index 69a98d507e7..07fd62abd7e 100644 --- a/classes/class_textserverfallback.rst +++ b/classes/class_textserverfallback.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/modules/text_server_fb/doc_classes/TextServerFallback.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/modules/text_server_fb/doc_classes/TextServerFallback.xml. .. _class_TextServerFallback: diff --git a/classes/class_textservermanager.rst b/classes/class_textservermanager.rst index 0932f6e0cad..d8cc7d390c1 100644 --- a/classes/class_textservermanager.rst +++ b/classes/class_textservermanager.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/TextServerManager.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/TextServerManager.xml. .. _class_TextServerManager: diff --git a/classes/class_texture.rst b/classes/class_texture.rst index 246ba9a41a9..9dbe4354bd0 100644 --- a/classes/class_texture.rst +++ b/classes/class_texture.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Texture.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Texture.xml. .. _class_Texture: diff --git a/classes/class_texture2d.rst b/classes/class_texture2d.rst index e32153efbdd..30c1626c398 100644 --- a/classes/class_texture2d.rst +++ b/classes/class_texture2d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Texture2D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Texture2D.xml. .. _class_Texture2D: diff --git a/classes/class_texture2darray.rst b/classes/class_texture2darray.rst index c5684ef19f4..6ecbee6a51b 100644 --- a/classes/class_texture2darray.rst +++ b/classes/class_texture2darray.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Texture2DArray.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Texture2DArray.xml. .. _class_Texture2DArray: diff --git a/classes/class_texture3d.rst b/classes/class_texture3d.rst index 3e59c8d087a..996293be922 100644 --- a/classes/class_texture3d.rst +++ b/classes/class_texture3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Texture3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Texture3D.xml. .. _class_Texture3D: diff --git a/classes/class_texturebutton.rst b/classes/class_texturebutton.rst index a85310ec495..17ed69e6a7d 100644 --- a/classes/class_texturebutton.rst +++ b/classes/class_texturebutton.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/TextureButton.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/TextureButton.xml. .. _class_TextureButton: diff --git a/classes/class_texturelayered.rst b/classes/class_texturelayered.rst index 85d24a7c8a4..7946875dbb8 100644 --- a/classes/class_texturelayered.rst +++ b/classes/class_texturelayered.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/TextureLayered.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/TextureLayered.xml. .. _class_TextureLayered: diff --git a/classes/class_textureprogressbar.rst b/classes/class_textureprogressbar.rst index bc8a5515404..5f46a9add72 100644 --- a/classes/class_textureprogressbar.rst +++ b/classes/class_textureprogressbar.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/TextureProgressBar.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/TextureProgressBar.xml. .. _class_TextureProgressBar: diff --git a/classes/class_texturerect.rst b/classes/class_texturerect.rst index cadc1baca85..39ccbcbde84 100644 --- a/classes/class_texturerect.rst +++ b/classes/class_texturerect.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/TextureRect.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/TextureRect.xml. .. _class_TextureRect: diff --git a/classes/class_theme.rst b/classes/class_theme.rst index 591f06a84dd..2ddf2592268 100644 --- a/classes/class_theme.rst +++ b/classes/class_theme.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Theme.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Theme.xml. .. _class_Theme: diff --git a/classes/class_themedb.rst b/classes/class_themedb.rst index 588be34fff3..0b6d0a4b642 100644 --- a/classes/class_themedb.rst +++ b/classes/class_themedb.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/ThemeDB.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/ThemeDB.xml. .. _class_ThemeDB: diff --git a/classes/class_thread.rst b/classes/class_thread.rst index 70e6be76833..e7fc5b375e3 100644 --- a/classes/class_thread.rst +++ b/classes/class_thread.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Thread.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Thread.xml. .. _class_Thread: diff --git a/classes/class_tiledata.rst b/classes/class_tiledata.rst index f615a98e2ab..f99ddbd3348 100644 --- a/classes/class_tiledata.rst +++ b/classes/class_tiledata.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/TileData.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/TileData.xml. .. _class_TileData: diff --git a/classes/class_tilemap.rst b/classes/class_tilemap.rst index 2644707e31d..ebf51a4d2cd 100644 --- a/classes/class_tilemap.rst +++ b/classes/class_tilemap.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/TileMap.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/TileMap.xml. .. _class_TileMap: diff --git a/classes/class_tilemappattern.rst b/classes/class_tilemappattern.rst index f0be66f1927..292498d7966 100644 --- a/classes/class_tilemappattern.rst +++ b/classes/class_tilemappattern.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/TileMapPattern.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/TileMapPattern.xml. .. _class_TileMapPattern: diff --git a/classes/class_tileset.rst b/classes/class_tileset.rst index dae87515527..c8aa243fa86 100644 --- a/classes/class_tileset.rst +++ b/classes/class_tileset.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/TileSet.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/TileSet.xml. .. _class_TileSet: diff --git a/classes/class_tilesetatlassource.rst b/classes/class_tilesetatlassource.rst index 22a12bb63ee..0c9077a5a3d 100644 --- a/classes/class_tilesetatlassource.rst +++ b/classes/class_tilesetatlassource.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/TileSetAtlasSource.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/TileSetAtlasSource.xml. .. _class_TileSetAtlasSource: diff --git a/classes/class_tilesetscenescollectionsource.rst b/classes/class_tilesetscenescollectionsource.rst index 10e762131e9..eb556e95448 100644 --- a/classes/class_tilesetscenescollectionsource.rst +++ b/classes/class_tilesetscenescollectionsource.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/TileSetScenesCollectionSource.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/TileSetScenesCollectionSource.xml. .. _class_TileSetScenesCollectionSource: diff --git a/classes/class_tilesetsource.rst b/classes/class_tilesetsource.rst index 479f32b6730..80a4904dee9 100644 --- a/classes/class_tilesetsource.rst +++ b/classes/class_tilesetsource.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/TileSetSource.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/TileSetSource.xml. .. _class_TileSetSource: diff --git a/classes/class_time.rst b/classes/class_time.rst index 377ead4f322..37e0213be3c 100644 --- a/classes/class_time.rst +++ b/classes/class_time.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Time.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Time.xml. .. _class_Time: diff --git a/classes/class_timer.rst b/classes/class_timer.rst index e01b1559ed1..fc2111093f3 100644 --- a/classes/class_timer.rst +++ b/classes/class_timer.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Timer.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Timer.xml. .. _class_Timer: diff --git a/classes/class_tlsoptions.rst b/classes/class_tlsoptions.rst index 7a47742ebdb..3ba95b252bb 100644 --- a/classes/class_tlsoptions.rst +++ b/classes/class_tlsoptions.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/TLSOptions.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/TLSOptions.xml. .. _class_TLSOptions: @@ -74,7 +74,7 @@ Creates a TLS client configuration which validates certificates and their common You can specify a custom ``trusted_chain`` of certification authorities (the default CA list will be used if ``null``), and optionally provide a ``common_name_override`` if you expect the certificate to have a common name other then the server FQDN. -Note: On the Web plafrom, TLS verification is always enforced against the CA list of the web browser. This is considered a security feature. +\ **Note:** On the Web platform, TLS verification is always enforced against the CA list of the web browser. This is considered a security feature. .. rst-class:: classref-item-separator @@ -86,9 +86,9 @@ Note: On the Web plafrom, TLS verification is always enforced against the CA lis :ref:`TLSOptions` **client_unsafe** **(** :ref:`X509Certificate` trusted_chain=null **)** |static| -Creates an **unsafe** TLS client configuration where certificate validation is optional. You can optionally provide a valid ``trusted_chain``, but the common name of the certififcates will never be checked. Using this configuration for purposes other than testing **is not recommended**. +Creates an **unsafe** TLS client configuration where certificate validation is optional. You can optionally provide a valid ``trusted_chain``, but the common name of the certificates will never be checked. Using this configuration for purposes other than testing **is not recommended**. -Note: On the Web plafrom, TLS verification is always enforced against the CA list of the web browser. This is considered a security feature. +\ **Note:** On the Web platform, TLS verification is always enforced against the CA list of the web browser. This is considered a security feature. .. rst-class:: classref-item-separator @@ -102,7 +102,7 @@ Note: On the Web plafrom, TLS verification is always enforced against the CA lis Creates a TLS server configuration using the provided ``key`` and ``certificate``. -Note: The ``certificate`` should include the full certificate chain up to the signing CA (certificates file can be concatenated using a general purpose text editor). +\ **Note:** The ``certificate`` should include the full certificate chain up to the signing CA (certificates file can be concatenated using a general purpose text editor). .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)` .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)` diff --git a/classes/class_torusmesh.rst b/classes/class_torusmesh.rst index c10730f1534..8e218065de9 100644 --- a/classes/class_torusmesh.rst +++ b/classes/class_torusmesh.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/TorusMesh.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/TorusMesh.xml. .. _class_TorusMesh: diff --git a/classes/class_touchscreenbutton.rst b/classes/class_touchscreenbutton.rst index 30d20a4a231..55d6f698212 100644 --- a/classes/class_touchscreenbutton.rst +++ b/classes/class_touchscreenbutton.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/TouchScreenButton.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/TouchScreenButton.xml. .. _class_TouchScreenButton: diff --git a/classes/class_transform2d.rst b/classes/class_transform2d.rst index 4a7f9ed4e06..a949988d38e 100644 --- a/classes/class_transform2d.rst +++ b/classes/class_transform2d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Transform2D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Transform2D.xml. .. _class_Transform2D: diff --git a/classes/class_transform3d.rst b/classes/class_transform3d.rst index f77aa605e2f..b2eeeb8db01 100644 --- a/classes/class_transform3d.rst +++ b/classes/class_transform3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Transform3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Transform3D.xml. .. _class_Transform3D: diff --git a/classes/class_translation.rst b/classes/class_translation.rst index 370d0e82883..be255b9e997 100644 --- a/classes/class_translation.rst +++ b/classes/class_translation.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Translation.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Translation.xml. .. _class_Translation: diff --git a/classes/class_translationserver.rst b/classes/class_translationserver.rst index f66b5e56703..ec9fde7e8bf 100644 --- a/classes/class_translationserver.rst +++ b/classes/class_translationserver.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/TranslationServer.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/TranslationServer.xml. .. _class_TranslationServer: diff --git a/classes/class_tree.rst b/classes/class_tree.rst index cf185b05e97..7fcb261b95e 100644 --- a/classes/class_tree.rst +++ b/classes/class_tree.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Tree.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Tree.xml. .. _class_Tree: diff --git a/classes/class_treeitem.rst b/classes/class_treeitem.rst index f5dcf4820da..0b83bfdc5e6 100644 --- a/classes/class_treeitem.rst +++ b/classes/class_treeitem.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/TreeItem.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/TreeItem.xml. .. _class_TreeItem: diff --git a/classes/class_trianglemesh.rst b/classes/class_trianglemesh.rst index 0c8228f9a1a..ffcbda8fdb1 100644 --- a/classes/class_trianglemesh.rst +++ b/classes/class_trianglemesh.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/TriangleMesh.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/TriangleMesh.xml. .. _class_TriangleMesh: diff --git a/classes/class_tubetrailmesh.rst b/classes/class_tubetrailmesh.rst index 4adc96da0ca..e0507d3596c 100644 --- a/classes/class_tubetrailmesh.rst +++ b/classes/class_tubetrailmesh.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/TubeTrailMesh.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/TubeTrailMesh.xml. .. _class_TubeTrailMesh: diff --git a/classes/class_tween.rst b/classes/class_tween.rst index 8ea12ca4506..0ea41d948de 100644 --- a/classes/class_tween.rst +++ b/classes/class_tween.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Tween.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Tween.xml. .. _class_Tween: diff --git a/classes/class_tweener.rst b/classes/class_tweener.rst index 63b7d8cde69..5709f63e84c 100644 --- a/classes/class_tweener.rst +++ b/classes/class_tweener.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Tweener.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Tweener.xml. .. _class_Tweener: diff --git a/classes/class_udpserver.rst b/classes/class_udpserver.rst index 898ddd4cfbe..04432e181da 100644 --- a/classes/class_udpserver.rst +++ b/classes/class_udpserver.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/UDPServer.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/UDPServer.xml. .. _class_UDPServer: diff --git a/classes/class_undoredo.rst b/classes/class_undoredo.rst index 7ee3c1e1bc2..354918fd70f 100644 --- a/classes/class_undoredo.rst +++ b/classes/class_undoredo.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/UndoRedo.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/UndoRedo.xml. .. _class_UndoRedo: diff --git a/classes/class_upnp.rst b/classes/class_upnp.rst index edfc61c1e09..60e4996c5ea 100644 --- a/classes/class_upnp.rst +++ b/classes/class_upnp.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/modules/upnp/doc_classes/UPNP.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/modules/upnp/doc_classes/UPNP.xml. .. _class_UPNP: diff --git a/classes/class_upnpdevice.rst b/classes/class_upnpdevice.rst index 245cb1f6c9f..e7d57f09b68 100644 --- a/classes/class_upnpdevice.rst +++ b/classes/class_upnpdevice.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/modules/upnp/doc_classes/UPNPDevice.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/modules/upnp/doc_classes/UPNPDevice.xml. .. _class_UPNPDevice: diff --git a/classes/class_variant.rst b/classes/class_variant.rst index 1e051274400..2aea43bf3f5 100644 --- a/classes/class_variant.rst +++ b/classes/class_variant.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Variant.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Variant.xml. .. _class_Variant: diff --git a/classes/class_vboxcontainer.rst b/classes/class_vboxcontainer.rst index baf0830aad8..15003da2b0f 100644 --- a/classes/class_vboxcontainer.rst +++ b/classes/class_vboxcontainer.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VBoxContainer.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VBoxContainer.xml. .. _class_VBoxContainer: diff --git a/classes/class_vector2.rst b/classes/class_vector2.rst index 9bb06305943..f2d311199bd 100644 --- a/classes/class_vector2.rst +++ b/classes/class_vector2.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Vector2.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Vector2.xml. .. _class_Vector2: diff --git a/classes/class_vector2i.rst b/classes/class_vector2i.rst index 07b62279a80..a21184391bc 100644 --- a/classes/class_vector2i.rst +++ b/classes/class_vector2i.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Vector2i.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Vector2i.xml. .. _class_Vector2i: diff --git a/classes/class_vector3.rst b/classes/class_vector3.rst index 9815e8d7f8d..aed1f5a85de 100644 --- a/classes/class_vector3.rst +++ b/classes/class_vector3.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Vector3.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Vector3.xml. .. _class_Vector3: diff --git a/classes/class_vector3i.rst b/classes/class_vector3i.rst index f34f4a28746..3d8d7c5b091 100644 --- a/classes/class_vector3i.rst +++ b/classes/class_vector3i.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Vector3i.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Vector3i.xml. .. _class_Vector3i: diff --git a/classes/class_vector4.rst b/classes/class_vector4.rst index 63e4537a239..7cf95f4cfc8 100644 --- a/classes/class_vector4.rst +++ b/classes/class_vector4.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Vector4.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Vector4.xml. .. _class_Vector4: diff --git a/classes/class_vector4i.rst b/classes/class_vector4i.rst index 8d6b7ef8551..ff369d82d77 100644 --- a/classes/class_vector4i.rst +++ b/classes/class_vector4i.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Vector4i.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Vector4i.xml. .. _class_Vector4i: diff --git a/classes/class_vehiclebody3d.rst b/classes/class_vehiclebody3d.rst index 76f77ca8430..ff5bd9a6862 100644 --- a/classes/class_vehiclebody3d.rst +++ b/classes/class_vehiclebody3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VehicleBody3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VehicleBody3D.xml. .. _class_VehicleBody3D: diff --git a/classes/class_vehiclewheel3d.rst b/classes/class_vehiclewheel3d.rst index 7e8612be9f9..924a2ba11ff 100644 --- a/classes/class_vehiclewheel3d.rst +++ b/classes/class_vehiclewheel3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VehicleWheel3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VehicleWheel3D.xml. .. _class_VehicleWheel3D: diff --git a/classes/class_vflowcontainer.rst b/classes/class_vflowcontainer.rst index cac821ed150..e3ec86b377e 100644 --- a/classes/class_vflowcontainer.rst +++ b/classes/class_vflowcontainer.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VFlowContainer.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VFlowContainer.xml. .. _class_VFlowContainer: diff --git a/classes/class_videostream.rst b/classes/class_videostream.rst index 3869a7ea4cc..9d32698ded7 100644 --- a/classes/class_videostream.rst +++ b/classes/class_videostream.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VideoStream.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VideoStream.xml. .. _class_VideoStream: diff --git a/classes/class_videostreamplayback.rst b/classes/class_videostreamplayback.rst index f3c18e4897e..50047663cbe 100644 --- a/classes/class_videostreamplayback.rst +++ b/classes/class_videostreamplayback.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VideoStreamPlayback.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VideoStreamPlayback.xml. .. _class_VideoStreamPlayback: diff --git a/classes/class_videostreamplayer.rst b/classes/class_videostreamplayer.rst index e3e212dd220..4d9d916ece9 100644 --- a/classes/class_videostreamplayer.rst +++ b/classes/class_videostreamplayer.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VideoStreamPlayer.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VideoStreamPlayer.xml. .. _class_VideoStreamPlayer: diff --git a/classes/class_videostreamtheora.rst b/classes/class_videostreamtheora.rst index 75b54240914..7843e1f651f 100644 --- a/classes/class_videostreamtheora.rst +++ b/classes/class_videostreamtheora.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/modules/theora/doc_classes/VideoStreamTheora.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/modules/theora/doc_classes/VideoStreamTheora.xml. .. _class_VideoStreamTheora: diff --git a/classes/class_viewport.rst b/classes/class_viewport.rst index 568e442d519..cbe9b34a4f3 100644 --- a/classes/class_viewport.rst +++ b/classes/class_viewport.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Viewport.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Viewport.xml. .. _class_Viewport: diff --git a/classes/class_viewporttexture.rst b/classes/class_viewporttexture.rst index e710d0ff3e2..1cfa556470d 100644 --- a/classes/class_viewporttexture.rst +++ b/classes/class_viewporttexture.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/ViewportTexture.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/ViewportTexture.xml. .. _class_ViewportTexture: diff --git a/classes/class_visibleonscreenenabler2d.rst b/classes/class_visibleonscreenenabler2d.rst index e6cf8369433..58bd5734e04 100644 --- a/classes/class_visibleonscreenenabler2d.rst +++ b/classes/class_visibleonscreenenabler2d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisibleOnScreenEnabler2D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisibleOnScreenEnabler2D.xml. .. _class_VisibleOnScreenEnabler2D: diff --git a/classes/class_visibleonscreenenabler3d.rst b/classes/class_visibleonscreenenabler3d.rst index 814b032390a..bfdf5c0f0cf 100644 --- a/classes/class_visibleonscreenenabler3d.rst +++ b/classes/class_visibleonscreenenabler3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisibleOnScreenEnabler3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisibleOnScreenEnabler3D.xml. .. _class_VisibleOnScreenEnabler3D: diff --git a/classes/class_visibleonscreennotifier2d.rst b/classes/class_visibleonscreennotifier2d.rst index e51e708ff18..717e3613118 100644 --- a/classes/class_visibleonscreennotifier2d.rst +++ b/classes/class_visibleonscreennotifier2d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisibleOnScreenNotifier2D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisibleOnScreenNotifier2D.xml. .. _class_VisibleOnScreenNotifier2D: diff --git a/classes/class_visibleonscreennotifier3d.rst b/classes/class_visibleonscreennotifier3d.rst index 419d2b22306..d6eb2eb6463 100644 --- a/classes/class_visibleonscreennotifier3d.rst +++ b/classes/class_visibleonscreennotifier3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisibleOnScreenNotifier3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisibleOnScreenNotifier3D.xml. .. _class_VisibleOnScreenNotifier3D: diff --git a/classes/class_visualinstance3d.rst b/classes/class_visualinstance3d.rst index c3bfc976f8e..8ccf11d6e15 100644 --- a/classes/class_visualinstance3d.rst +++ b/classes/class_visualinstance3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualInstance3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualInstance3D.xml. .. _class_VisualInstance3D: diff --git a/classes/class_visualshader.rst b/classes/class_visualshader.rst index 0a54c0a1606..738a15f1514 100644 --- a/classes/class_visualshader.rst +++ b/classes/class_visualshader.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShader.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShader.xml. .. _class_VisualShader: diff --git a/classes/class_visualshadernode.rst b/classes/class_visualshadernode.rst index 4b8b9e04b7d..07fab7e0d57 100644 --- a/classes/class_visualshadernode.rst +++ b/classes/class_visualshadernode.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNode.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNode.xml. .. _class_VisualShaderNode: diff --git a/classes/class_visualshadernodebillboard.rst b/classes/class_visualshadernodebillboard.rst index 2fd9828aa99..8f3f107f33f 100644 --- a/classes/class_visualshadernodebillboard.rst +++ b/classes/class_visualshadernodebillboard.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeBillboard.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeBillboard.xml. .. _class_VisualShaderNodeBillboard: diff --git a/classes/class_visualshadernodebooleanconstant.rst b/classes/class_visualshadernodebooleanconstant.rst index 32da5a46767..e3aff8df12c 100644 --- a/classes/class_visualshadernodebooleanconstant.rst +++ b/classes/class_visualshadernodebooleanconstant.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeBooleanConstant.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeBooleanConstant.xml. .. _class_VisualShaderNodeBooleanConstant: diff --git a/classes/class_visualshadernodebooleanparameter.rst b/classes/class_visualshadernodebooleanparameter.rst index 3e9ffa31ee4..9ec3cfa612c 100644 --- a/classes/class_visualshadernodebooleanparameter.rst +++ b/classes/class_visualshadernodebooleanparameter.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeBooleanParameter.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeBooleanParameter.xml. .. _class_VisualShaderNodeBooleanParameter: diff --git a/classes/class_visualshadernodeclamp.rst b/classes/class_visualshadernodeclamp.rst index 37cbf09ef93..2b879e6d88a 100644 --- a/classes/class_visualshadernodeclamp.rst +++ b/classes/class_visualshadernodeclamp.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeClamp.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeClamp.xml. .. _class_VisualShaderNodeClamp: diff --git a/classes/class_visualshadernodecolorconstant.rst b/classes/class_visualshadernodecolorconstant.rst index e4605cfe5d7..d7b1c7bfd44 100644 --- a/classes/class_visualshadernodecolorconstant.rst +++ b/classes/class_visualshadernodecolorconstant.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeColorConstant.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeColorConstant.xml. .. _class_VisualShaderNodeColorConstant: diff --git a/classes/class_visualshadernodecolorfunc.rst b/classes/class_visualshadernodecolorfunc.rst index 442dbec4048..ebe03fcba7e 100644 --- a/classes/class_visualshadernodecolorfunc.rst +++ b/classes/class_visualshadernodecolorfunc.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeColorFunc.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeColorFunc.xml. .. _class_VisualShaderNodeColorFunc: diff --git a/classes/class_visualshadernodecolorop.rst b/classes/class_visualshadernodecolorop.rst index 42cd30ccf12..c8bbaf2a25b 100644 --- a/classes/class_visualshadernodecolorop.rst +++ b/classes/class_visualshadernodecolorop.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeColorOp.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeColorOp.xml. .. _class_VisualShaderNodeColorOp: diff --git a/classes/class_visualshadernodecolorparameter.rst b/classes/class_visualshadernodecolorparameter.rst index 49615665ba1..f1831fbe824 100644 --- a/classes/class_visualshadernodecolorparameter.rst +++ b/classes/class_visualshadernodecolorparameter.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeColorParameter.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeColorParameter.xml. .. _class_VisualShaderNodeColorParameter: diff --git a/classes/class_visualshadernodecomment.rst b/classes/class_visualshadernodecomment.rst index 4398f1c889b..653a5a82c1c 100644 --- a/classes/class_visualshadernodecomment.rst +++ b/classes/class_visualshadernodecomment.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeComment.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeComment.xml. .. _class_VisualShaderNodeComment: diff --git a/classes/class_visualshadernodecompare.rst b/classes/class_visualshadernodecompare.rst index 2a6547e763b..420e2685d19 100644 --- a/classes/class_visualshadernodecompare.rst +++ b/classes/class_visualshadernodecompare.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeCompare.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeCompare.xml. .. _class_VisualShaderNodeCompare: diff --git a/classes/class_visualshadernodeconstant.rst b/classes/class_visualshadernodeconstant.rst index f5dd8e4f513..01987256e19 100644 --- a/classes/class_visualshadernodeconstant.rst +++ b/classes/class_visualshadernodeconstant.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeConstant.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeConstant.xml. .. _class_VisualShaderNodeConstant: diff --git a/classes/class_visualshadernodecubemap.rst b/classes/class_visualshadernodecubemap.rst index 28e0cac7c91..603e9872de8 100644 --- a/classes/class_visualshadernodecubemap.rst +++ b/classes/class_visualshadernodecubemap.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeCubemap.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeCubemap.xml. .. _class_VisualShaderNodeCubemap: diff --git a/classes/class_visualshadernodecubemapparameter.rst b/classes/class_visualshadernodecubemapparameter.rst index 564a41a1395..3efd3c5c8c3 100644 --- a/classes/class_visualshadernodecubemapparameter.rst +++ b/classes/class_visualshadernodecubemapparameter.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeCubemapParameter.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeCubemapParameter.xml. .. _class_VisualShaderNodeCubemapParameter: diff --git a/classes/class_visualshadernodecurvetexture.rst b/classes/class_visualshadernodecurvetexture.rst index 0e69e59af6f..e791cf29674 100644 --- a/classes/class_visualshadernodecurvetexture.rst +++ b/classes/class_visualshadernodecurvetexture.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeCurveTexture.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeCurveTexture.xml. .. _class_VisualShaderNodeCurveTexture: diff --git a/classes/class_visualshadernodecurvexyztexture.rst b/classes/class_visualshadernodecurvexyztexture.rst index 3ad6b3c36ea..4f8912b1496 100644 --- a/classes/class_visualshadernodecurvexyztexture.rst +++ b/classes/class_visualshadernodecurvexyztexture.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeCurveXYZTexture.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeCurveXYZTexture.xml. .. _class_VisualShaderNodeCurveXYZTexture: diff --git a/classes/class_visualshadernodecustom.rst b/classes/class_visualshadernodecustom.rst index 07623655922..5e506c3edec 100644 --- a/classes/class_visualshadernodecustom.rst +++ b/classes/class_visualshadernodecustom.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeCustom.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeCustom.xml. .. _class_VisualShaderNodeCustom: diff --git a/classes/class_visualshadernodederivativefunc.rst b/classes/class_visualshadernodederivativefunc.rst index 8a4e7ed38ea..bba9a8421df 100644 --- a/classes/class_visualshadernodederivativefunc.rst +++ b/classes/class_visualshadernodederivativefunc.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeDerivativeFunc.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeDerivativeFunc.xml. .. _class_VisualShaderNodeDerivativeFunc: diff --git a/classes/class_visualshadernodedeterminant.rst b/classes/class_visualshadernodedeterminant.rst index b85ba816cdf..d30f0d76402 100644 --- a/classes/class_visualshadernodedeterminant.rst +++ b/classes/class_visualshadernodedeterminant.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeDeterminant.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeDeterminant.xml. .. _class_VisualShaderNodeDeterminant: diff --git a/classes/class_visualshadernodedistancefade.rst b/classes/class_visualshadernodedistancefade.rst index 75abdfd09eb..dc540763983 100644 --- a/classes/class_visualshadernodedistancefade.rst +++ b/classes/class_visualshadernodedistancefade.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeDistanceFade.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeDistanceFade.xml. .. _class_VisualShaderNodeDistanceFade: diff --git a/classes/class_visualshadernodedotproduct.rst b/classes/class_visualshadernodedotproduct.rst index 0da9ecf2f4f..376782fe5ae 100644 --- a/classes/class_visualshadernodedotproduct.rst +++ b/classes/class_visualshadernodedotproduct.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeDotProduct.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeDotProduct.xml. .. _class_VisualShaderNodeDotProduct: diff --git a/classes/class_visualshadernodeexpression.rst b/classes/class_visualshadernodeexpression.rst index 84fe57136e9..5f04e54b20e 100644 --- a/classes/class_visualshadernodeexpression.rst +++ b/classes/class_visualshadernodeexpression.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeExpression.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeExpression.xml. .. _class_VisualShaderNodeExpression: diff --git a/classes/class_visualshadernodefaceforward.rst b/classes/class_visualshadernodefaceforward.rst index cfad3a9326e..3574ddb9599 100644 --- a/classes/class_visualshadernodefaceforward.rst +++ b/classes/class_visualshadernodefaceforward.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeFaceForward.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeFaceForward.xml. .. _class_VisualShaderNodeFaceForward: diff --git a/classes/class_visualshadernodefloatconstant.rst b/classes/class_visualshadernodefloatconstant.rst index da21b8aaf06..d8affee20aa 100644 --- a/classes/class_visualshadernodefloatconstant.rst +++ b/classes/class_visualshadernodefloatconstant.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeFloatConstant.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeFloatConstant.xml. .. _class_VisualShaderNodeFloatConstant: diff --git a/classes/class_visualshadernodefloatfunc.rst b/classes/class_visualshadernodefloatfunc.rst index 81f2e131e45..95f1a563142 100644 --- a/classes/class_visualshadernodefloatfunc.rst +++ b/classes/class_visualshadernodefloatfunc.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeFloatFunc.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeFloatFunc.xml. .. _class_VisualShaderNodeFloatFunc: diff --git a/classes/class_visualshadernodefloatop.rst b/classes/class_visualshadernodefloatop.rst index b94f0caf58f..f155d4e0c6a 100644 --- a/classes/class_visualshadernodefloatop.rst +++ b/classes/class_visualshadernodefloatop.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeFloatOp.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeFloatOp.xml. .. _class_VisualShaderNodeFloatOp: diff --git a/classes/class_visualshadernodefloatparameter.rst b/classes/class_visualshadernodefloatparameter.rst index 69ee8e99497..740cb5015ef 100644 --- a/classes/class_visualshadernodefloatparameter.rst +++ b/classes/class_visualshadernodefloatparameter.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeFloatParameter.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeFloatParameter.xml. .. _class_VisualShaderNodeFloatParameter: diff --git a/classes/class_visualshadernodefresnel.rst b/classes/class_visualshadernodefresnel.rst index 233e804d7b6..7623e7bfc4b 100644 --- a/classes/class_visualshadernodefresnel.rst +++ b/classes/class_visualshadernodefresnel.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeFresnel.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeFresnel.xml. .. _class_VisualShaderNodeFresnel: diff --git a/classes/class_visualshadernodeglobalexpression.rst b/classes/class_visualshadernodeglobalexpression.rst index f6244e9c69b..78e86d866b4 100644 --- a/classes/class_visualshadernodeglobalexpression.rst +++ b/classes/class_visualshadernodeglobalexpression.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeGlobalExpression.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeGlobalExpression.xml. .. _class_VisualShaderNodeGlobalExpression: diff --git a/classes/class_visualshadernodegroupbase.rst b/classes/class_visualshadernodegroupbase.rst index 267f01251cb..0804a85429b 100644 --- a/classes/class_visualshadernodegroupbase.rst +++ b/classes/class_visualshadernodegroupbase.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeGroupBase.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeGroupBase.xml. .. _class_VisualShaderNodeGroupBase: diff --git a/classes/class_visualshadernodeif.rst b/classes/class_visualshadernodeif.rst index 3021755ae04..0aa273f5ec1 100644 --- a/classes/class_visualshadernodeif.rst +++ b/classes/class_visualshadernodeif.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeIf.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeIf.xml. .. _class_VisualShaderNodeIf: diff --git a/classes/class_visualshadernodeinput.rst b/classes/class_visualshadernodeinput.rst index 1c26489150e..4d4b17ccf2b 100644 --- a/classes/class_visualshadernodeinput.rst +++ b/classes/class_visualshadernodeinput.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeInput.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeInput.xml. .. _class_VisualShaderNodeInput: diff --git a/classes/class_visualshadernodeintconstant.rst b/classes/class_visualshadernodeintconstant.rst index a66a552c211..48c4927e92d 100644 --- a/classes/class_visualshadernodeintconstant.rst +++ b/classes/class_visualshadernodeintconstant.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeIntConstant.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeIntConstant.xml. .. _class_VisualShaderNodeIntConstant: diff --git a/classes/class_visualshadernodeintfunc.rst b/classes/class_visualshadernodeintfunc.rst index 9e26fff36cc..0a013313bd5 100644 --- a/classes/class_visualshadernodeintfunc.rst +++ b/classes/class_visualshadernodeintfunc.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeIntFunc.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeIntFunc.xml. .. _class_VisualShaderNodeIntFunc: diff --git a/classes/class_visualshadernodeintop.rst b/classes/class_visualshadernodeintop.rst index b8a0762331b..dd2fd58aba9 100644 --- a/classes/class_visualshadernodeintop.rst +++ b/classes/class_visualshadernodeintop.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeIntOp.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeIntOp.xml. .. _class_VisualShaderNodeIntOp: diff --git a/classes/class_visualshadernodeintparameter.rst b/classes/class_visualshadernodeintparameter.rst index c1afeedf698..b0780e30b33 100644 --- a/classes/class_visualshadernodeintparameter.rst +++ b/classes/class_visualshadernodeintparameter.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeIntParameter.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeIntParameter.xml. .. _class_VisualShaderNodeIntParameter: diff --git a/classes/class_visualshadernodeis.rst b/classes/class_visualshadernodeis.rst index 01732ffa967..06106cd1bd7 100644 --- a/classes/class_visualshadernodeis.rst +++ b/classes/class_visualshadernodeis.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeIs.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeIs.xml. .. _class_VisualShaderNodeIs: diff --git a/classes/class_visualshadernodelinearscenedepth.rst b/classes/class_visualshadernodelinearscenedepth.rst index 2f1979ebbdb..2feb8af2dfa 100644 --- a/classes/class_visualshadernodelinearscenedepth.rst +++ b/classes/class_visualshadernodelinearscenedepth.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeLinearSceneDepth.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeLinearSceneDepth.xml. .. _class_VisualShaderNodeLinearSceneDepth: diff --git a/classes/class_visualshadernodemix.rst b/classes/class_visualshadernodemix.rst index 6ef97977649..ab162155bcc 100644 --- a/classes/class_visualshadernodemix.rst +++ b/classes/class_visualshadernodemix.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeMix.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeMix.xml. .. _class_VisualShaderNodeMix: diff --git a/classes/class_visualshadernodemultiplyadd.rst b/classes/class_visualshadernodemultiplyadd.rst index a18fadfdf57..50ee9758346 100644 --- a/classes/class_visualshadernodemultiplyadd.rst +++ b/classes/class_visualshadernodemultiplyadd.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeMultiplyAdd.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeMultiplyAdd.xml. .. _class_VisualShaderNodeMultiplyAdd: diff --git a/classes/class_visualshadernodeouterproduct.rst b/classes/class_visualshadernodeouterproduct.rst index 32fe7d4d7be..d61153ca364 100644 --- a/classes/class_visualshadernodeouterproduct.rst +++ b/classes/class_visualshadernodeouterproduct.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeOuterProduct.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeOuterProduct.xml. .. _class_VisualShaderNodeOuterProduct: diff --git a/classes/class_visualshadernodeoutput.rst b/classes/class_visualshadernodeoutput.rst index dddcc17f526..c9c8dd45ec6 100644 --- a/classes/class_visualshadernodeoutput.rst +++ b/classes/class_visualshadernodeoutput.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeOutput.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeOutput.xml. .. _class_VisualShaderNodeOutput: diff --git a/classes/class_visualshadernodeparameter.rst b/classes/class_visualshadernodeparameter.rst index 0750b5c0020..a07e1207dbe 100644 --- a/classes/class_visualshadernodeparameter.rst +++ b/classes/class_visualshadernodeparameter.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeParameter.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeParameter.xml. .. _class_VisualShaderNodeParameter: diff --git a/classes/class_visualshadernodeparameterref.rst b/classes/class_visualshadernodeparameterref.rst index db84f4a7b1f..667c17fa55f 100644 --- a/classes/class_visualshadernodeparameterref.rst +++ b/classes/class_visualshadernodeparameterref.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeParameterRef.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeParameterRef.xml. .. _class_VisualShaderNodeParameterRef: diff --git a/classes/class_visualshadernodeparticleaccelerator.rst b/classes/class_visualshadernodeparticleaccelerator.rst index 52aade37abd..8a3bb58599b 100644 --- a/classes/class_visualshadernodeparticleaccelerator.rst +++ b/classes/class_visualshadernodeparticleaccelerator.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeParticleAccelerator.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeParticleAccelerator.xml. .. _class_VisualShaderNodeParticleAccelerator: diff --git a/classes/class_visualshadernodeparticleboxemitter.rst b/classes/class_visualshadernodeparticleboxemitter.rst index 2e9043e5850..b80c66c50f3 100644 --- a/classes/class_visualshadernodeparticleboxemitter.rst +++ b/classes/class_visualshadernodeparticleboxemitter.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeParticleBoxEmitter.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeParticleBoxEmitter.xml. .. _class_VisualShaderNodeParticleBoxEmitter: diff --git a/classes/class_visualshadernodeparticleconevelocity.rst b/classes/class_visualshadernodeparticleconevelocity.rst index b0c7f8b892e..9b9b19946ee 100644 --- a/classes/class_visualshadernodeparticleconevelocity.rst +++ b/classes/class_visualshadernodeparticleconevelocity.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeParticleConeVelocity.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeParticleConeVelocity.xml. .. _class_VisualShaderNodeParticleConeVelocity: diff --git a/classes/class_visualshadernodeparticleemit.rst b/classes/class_visualshadernodeparticleemit.rst index 068f3459266..40cbcdce220 100644 --- a/classes/class_visualshadernodeparticleemit.rst +++ b/classes/class_visualshadernodeparticleemit.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeParticleEmit.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeParticleEmit.xml. .. _class_VisualShaderNodeParticleEmit: diff --git a/classes/class_visualshadernodeparticleemitter.rst b/classes/class_visualshadernodeparticleemitter.rst index 76432277b62..c5f17545b06 100644 --- a/classes/class_visualshadernodeparticleemitter.rst +++ b/classes/class_visualshadernodeparticleemitter.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeParticleEmitter.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeParticleEmitter.xml. .. _class_VisualShaderNodeParticleEmitter: diff --git a/classes/class_visualshadernodeparticlemeshemitter.rst b/classes/class_visualshadernodeparticlemeshemitter.rst index 58a7a706ef5..a51c25af052 100644 --- a/classes/class_visualshadernodeparticlemeshemitter.rst +++ b/classes/class_visualshadernodeparticlemeshemitter.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeParticleMeshEmitter.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeParticleMeshEmitter.xml. .. _class_VisualShaderNodeParticleMeshEmitter: diff --git a/classes/class_visualshadernodeparticlemultiplybyaxisangle.rst b/classes/class_visualshadernodeparticlemultiplybyaxisangle.rst index 4008f997609..1c06c6d8671 100644 --- a/classes/class_visualshadernodeparticlemultiplybyaxisangle.rst +++ b/classes/class_visualshadernodeparticlemultiplybyaxisangle.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeParticleMultiplyByAxisAngle.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeParticleMultiplyByAxisAngle.xml. .. _class_VisualShaderNodeParticleMultiplyByAxisAngle: diff --git a/classes/class_visualshadernodeparticleoutput.rst b/classes/class_visualshadernodeparticleoutput.rst index b8ba1d4477a..026d5c24649 100644 --- a/classes/class_visualshadernodeparticleoutput.rst +++ b/classes/class_visualshadernodeparticleoutput.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeParticleOutput.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeParticleOutput.xml. .. _class_VisualShaderNodeParticleOutput: diff --git a/classes/class_visualshadernodeparticlerandomness.rst b/classes/class_visualshadernodeparticlerandomness.rst index f2871a4462b..f04a857c67f 100644 --- a/classes/class_visualshadernodeparticlerandomness.rst +++ b/classes/class_visualshadernodeparticlerandomness.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeParticleRandomness.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeParticleRandomness.xml. .. _class_VisualShaderNodeParticleRandomness: diff --git a/classes/class_visualshadernodeparticleringemitter.rst b/classes/class_visualshadernodeparticleringemitter.rst index 0bc1bfae19e..ff876ee09f8 100644 --- a/classes/class_visualshadernodeparticleringemitter.rst +++ b/classes/class_visualshadernodeparticleringemitter.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeParticleRingEmitter.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeParticleRingEmitter.xml. .. _class_VisualShaderNodeParticleRingEmitter: diff --git a/classes/class_visualshadernodeparticlesphereemitter.rst b/classes/class_visualshadernodeparticlesphereemitter.rst index 7d2003c5399..3a1a717cfd3 100644 --- a/classes/class_visualshadernodeparticlesphereemitter.rst +++ b/classes/class_visualshadernodeparticlesphereemitter.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeParticleSphereEmitter.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeParticleSphereEmitter.xml. .. _class_VisualShaderNodeParticleSphereEmitter: diff --git a/classes/class_visualshadernodeproximityfade.rst b/classes/class_visualshadernodeproximityfade.rst index f32907ea00a..50bb3782ede 100644 --- a/classes/class_visualshadernodeproximityfade.rst +++ b/classes/class_visualshadernodeproximityfade.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeProximityFade.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeProximityFade.xml. .. _class_VisualShaderNodeProximityFade: diff --git a/classes/class_visualshadernoderandomrange.rst b/classes/class_visualshadernoderandomrange.rst index 9f8af834d35..773075ced67 100644 --- a/classes/class_visualshadernoderandomrange.rst +++ b/classes/class_visualshadernoderandomrange.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeRandomRange.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeRandomRange.xml. .. _class_VisualShaderNodeRandomRange: diff --git a/classes/class_visualshadernoderemap.rst b/classes/class_visualshadernoderemap.rst index 9d8ea928993..3b872d32ff6 100644 --- a/classes/class_visualshadernoderemap.rst +++ b/classes/class_visualshadernoderemap.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeRemap.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeRemap.xml. .. _class_VisualShaderNodeRemap: diff --git a/classes/class_visualshadernoderesizablebase.rst b/classes/class_visualshadernoderesizablebase.rst index cbde702fa25..ab960554479 100644 --- a/classes/class_visualshadernoderesizablebase.rst +++ b/classes/class_visualshadernoderesizablebase.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeResizableBase.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeResizableBase.xml. .. _class_VisualShaderNodeResizableBase: diff --git a/classes/class_visualshadernodesample3d.rst b/classes/class_visualshadernodesample3d.rst index 8cf38a22515..356b350785a 100644 --- a/classes/class_visualshadernodesample3d.rst +++ b/classes/class_visualshadernodesample3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeSample3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeSample3D.xml. .. _class_VisualShaderNodeSample3D: diff --git a/classes/class_visualshadernodescreenuvtosdf.rst b/classes/class_visualshadernodescreenuvtosdf.rst index 4df8e804f91..57d03bd8d9b 100644 --- a/classes/class_visualshadernodescreenuvtosdf.rst +++ b/classes/class_visualshadernodescreenuvtosdf.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeScreenUVToSDF.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeScreenUVToSDF.xml. .. _class_VisualShaderNodeScreenUVToSDF: diff --git a/classes/class_visualshadernodesdfraymarch.rst b/classes/class_visualshadernodesdfraymarch.rst index ce4b035d1b7..c81d051cd7d 100644 --- a/classes/class_visualshadernodesdfraymarch.rst +++ b/classes/class_visualshadernodesdfraymarch.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeSDFRaymarch.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeSDFRaymarch.xml. .. _class_VisualShaderNodeSDFRaymarch: diff --git a/classes/class_visualshadernodesdftoscreenuv.rst b/classes/class_visualshadernodesdftoscreenuv.rst index 6aab48f89e2..b4f37712c42 100644 --- a/classes/class_visualshadernodesdftoscreenuv.rst +++ b/classes/class_visualshadernodesdftoscreenuv.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeSDFToScreenUV.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeSDFToScreenUV.xml. .. _class_VisualShaderNodeSDFToScreenUV: diff --git a/classes/class_visualshadernodesmoothstep.rst b/classes/class_visualshadernodesmoothstep.rst index b8a4b7a8471..736a9a1d297 100644 --- a/classes/class_visualshadernodesmoothstep.rst +++ b/classes/class_visualshadernodesmoothstep.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeSmoothStep.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeSmoothStep.xml. .. _class_VisualShaderNodeSmoothStep: diff --git a/classes/class_visualshadernodestep.rst b/classes/class_visualshadernodestep.rst index 4d37fe8e3a5..b066b696565 100644 --- a/classes/class_visualshadernodestep.rst +++ b/classes/class_visualshadernodestep.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeStep.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeStep.xml. .. _class_VisualShaderNodeStep: diff --git a/classes/class_visualshadernodeswitch.rst b/classes/class_visualshadernodeswitch.rst index 55e7c9cf653..ade78be92d4 100644 --- a/classes/class_visualshadernodeswitch.rst +++ b/classes/class_visualshadernodeswitch.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeSwitch.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeSwitch.xml. .. _class_VisualShaderNodeSwitch: diff --git a/classes/class_visualshadernodetexture.rst b/classes/class_visualshadernodetexture.rst index d9c926d5f9d..f0b8bde2070 100644 --- a/classes/class_visualshadernodetexture.rst +++ b/classes/class_visualshadernodetexture.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeTexture.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeTexture.xml. .. _class_VisualShaderNodeTexture: diff --git a/classes/class_visualshadernodetexture2darray.rst b/classes/class_visualshadernodetexture2darray.rst index da69c59ab12..6da1f494199 100644 --- a/classes/class_visualshadernodetexture2darray.rst +++ b/classes/class_visualshadernodetexture2darray.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeTexture2DArray.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeTexture2DArray.xml. .. _class_VisualShaderNodeTexture2DArray: diff --git a/classes/class_visualshadernodetexture2darrayparameter.rst b/classes/class_visualshadernodetexture2darrayparameter.rst index 9926a6483ab..666ec41e96b 100644 --- a/classes/class_visualshadernodetexture2darrayparameter.rst +++ b/classes/class_visualshadernodetexture2darrayparameter.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeTexture2DArrayParameter.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeTexture2DArrayParameter.xml. .. _class_VisualShaderNodeTexture2DArrayParameter: diff --git a/classes/class_visualshadernodetexture2dparameter.rst b/classes/class_visualshadernodetexture2dparameter.rst index 3fd2ac37abb..4a026fce194 100644 --- a/classes/class_visualshadernodetexture2dparameter.rst +++ b/classes/class_visualshadernodetexture2dparameter.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeTexture2DParameter.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeTexture2DParameter.xml. .. _class_VisualShaderNodeTexture2DParameter: diff --git a/classes/class_visualshadernodetexture3d.rst b/classes/class_visualshadernodetexture3d.rst index 4887bd665fb..c3236d2e02c 100644 --- a/classes/class_visualshadernodetexture3d.rst +++ b/classes/class_visualshadernodetexture3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeTexture3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeTexture3D.xml. .. _class_VisualShaderNodeTexture3D: diff --git a/classes/class_visualshadernodetexture3dparameter.rst b/classes/class_visualshadernodetexture3dparameter.rst index 9aaa1210ebd..c5e00db11fd 100644 --- a/classes/class_visualshadernodetexture3dparameter.rst +++ b/classes/class_visualshadernodetexture3dparameter.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeTexture3DParameter.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeTexture3DParameter.xml. .. _class_VisualShaderNodeTexture3DParameter: diff --git a/classes/class_visualshadernodetextureparameter.rst b/classes/class_visualshadernodetextureparameter.rst index 9ba2f704b75..1abdf08e9bd 100644 --- a/classes/class_visualshadernodetextureparameter.rst +++ b/classes/class_visualshadernodetextureparameter.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeTextureParameter.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeTextureParameter.xml. .. _class_VisualShaderNodeTextureParameter: diff --git a/classes/class_visualshadernodetextureparametertriplanar.rst b/classes/class_visualshadernodetextureparametertriplanar.rst index 9c2deaf3843..bc9b0c0faed 100644 --- a/classes/class_visualshadernodetextureparametertriplanar.rst +++ b/classes/class_visualshadernodetextureparametertriplanar.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeTextureParameterTriplanar.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeTextureParameterTriplanar.xml. .. _class_VisualShaderNodeTextureParameterTriplanar: diff --git a/classes/class_visualshadernodetexturesdf.rst b/classes/class_visualshadernodetexturesdf.rst index 0f3a9cff5a4..f4771fc27df 100644 --- a/classes/class_visualshadernodetexturesdf.rst +++ b/classes/class_visualshadernodetexturesdf.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeTextureSDF.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeTextureSDF.xml. .. _class_VisualShaderNodeTextureSDF: diff --git a/classes/class_visualshadernodetexturesdfnormal.rst b/classes/class_visualshadernodetexturesdfnormal.rst index 87f75a59265..66aa0fc3f79 100644 --- a/classes/class_visualshadernodetexturesdfnormal.rst +++ b/classes/class_visualshadernodetexturesdfnormal.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeTextureSDFNormal.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeTextureSDFNormal.xml. .. _class_VisualShaderNodeTextureSDFNormal: diff --git a/classes/class_visualshadernodetransformcompose.rst b/classes/class_visualshadernodetransformcompose.rst index f7e9dd54d8d..ef29b516077 100644 --- a/classes/class_visualshadernodetransformcompose.rst +++ b/classes/class_visualshadernodetransformcompose.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeTransformCompose.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeTransformCompose.xml. .. _class_VisualShaderNodeTransformCompose: diff --git a/classes/class_visualshadernodetransformconstant.rst b/classes/class_visualshadernodetransformconstant.rst index 1b140cbf24f..90786f61b2f 100644 --- a/classes/class_visualshadernodetransformconstant.rst +++ b/classes/class_visualshadernodetransformconstant.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeTransformConstant.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeTransformConstant.xml. .. _class_VisualShaderNodeTransformConstant: diff --git a/classes/class_visualshadernodetransformdecompose.rst b/classes/class_visualshadernodetransformdecompose.rst index 21add3494e2..5426269d3a0 100644 --- a/classes/class_visualshadernodetransformdecompose.rst +++ b/classes/class_visualshadernodetransformdecompose.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeTransformDecompose.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeTransformDecompose.xml. .. _class_VisualShaderNodeTransformDecompose: diff --git a/classes/class_visualshadernodetransformfunc.rst b/classes/class_visualshadernodetransformfunc.rst index 6329aac5f67..e583763e0ff 100644 --- a/classes/class_visualshadernodetransformfunc.rst +++ b/classes/class_visualshadernodetransformfunc.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeTransformFunc.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeTransformFunc.xml. .. _class_VisualShaderNodeTransformFunc: diff --git a/classes/class_visualshadernodetransformop.rst b/classes/class_visualshadernodetransformop.rst index 68abde4054a..47b6303e6db 100644 --- a/classes/class_visualshadernodetransformop.rst +++ b/classes/class_visualshadernodetransformop.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeTransformOp.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeTransformOp.xml. .. _class_VisualShaderNodeTransformOp: diff --git a/classes/class_visualshadernodetransformparameter.rst b/classes/class_visualshadernodetransformparameter.rst index ca5e54bfaab..2998cd473c7 100644 --- a/classes/class_visualshadernodetransformparameter.rst +++ b/classes/class_visualshadernodetransformparameter.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeTransformParameter.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeTransformParameter.xml. .. _class_VisualShaderNodeTransformParameter: diff --git a/classes/class_visualshadernodetransformvecmult.rst b/classes/class_visualshadernodetransformvecmult.rst index 11e189b2c3b..b9394ebbebf 100644 --- a/classes/class_visualshadernodetransformvecmult.rst +++ b/classes/class_visualshadernodetransformvecmult.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeTransformVecMult.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeTransformVecMult.xml. .. _class_VisualShaderNodeTransformVecMult: diff --git a/classes/class_visualshadernodeuintconstant.rst b/classes/class_visualshadernodeuintconstant.rst index eda432e59b7..47124b2fdb1 100644 --- a/classes/class_visualshadernodeuintconstant.rst +++ b/classes/class_visualshadernodeuintconstant.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeUIntConstant.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeUIntConstant.xml. .. _class_VisualShaderNodeUIntConstant: diff --git a/classes/class_visualshadernodeuintfunc.rst b/classes/class_visualshadernodeuintfunc.rst index f5bada1eadc..e59d7c93b7a 100644 --- a/classes/class_visualshadernodeuintfunc.rst +++ b/classes/class_visualshadernodeuintfunc.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeUIntFunc.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeUIntFunc.xml. .. _class_VisualShaderNodeUIntFunc: diff --git a/classes/class_visualshadernodeuintop.rst b/classes/class_visualshadernodeuintop.rst index 77c25c5c1db..56e2b49db1b 100644 --- a/classes/class_visualshadernodeuintop.rst +++ b/classes/class_visualshadernodeuintop.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeUIntOp.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeUIntOp.xml. .. _class_VisualShaderNodeUIntOp: diff --git a/classes/class_visualshadernodeuintparameter.rst b/classes/class_visualshadernodeuintparameter.rst index 81d7a492ae0..b1ca523881d 100644 --- a/classes/class_visualshadernodeuintparameter.rst +++ b/classes/class_visualshadernodeuintparameter.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeUIntParameter.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeUIntParameter.xml. .. _class_VisualShaderNodeUIntParameter: diff --git a/classes/class_visualshadernodeuvfunc.rst b/classes/class_visualshadernodeuvfunc.rst index d47b64841c5..3967ab2969b 100644 --- a/classes/class_visualshadernodeuvfunc.rst +++ b/classes/class_visualshadernodeuvfunc.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeUVFunc.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeUVFunc.xml. .. _class_VisualShaderNodeUVFunc: diff --git a/classes/class_visualshadernodeuvpolarcoord.rst b/classes/class_visualshadernodeuvpolarcoord.rst index 85943b1164b..9f997693978 100644 --- a/classes/class_visualshadernodeuvpolarcoord.rst +++ b/classes/class_visualshadernodeuvpolarcoord.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeUVPolarCoord.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeUVPolarCoord.xml. .. _class_VisualShaderNodeUVPolarCoord: diff --git a/classes/class_visualshadernodevarying.rst b/classes/class_visualshadernodevarying.rst index 3ebad00c5f7..c6bdfb49d9e 100644 --- a/classes/class_visualshadernodevarying.rst +++ b/classes/class_visualshadernodevarying.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeVarying.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeVarying.xml. .. _class_VisualShaderNodeVarying: diff --git a/classes/class_visualshadernodevaryinggetter.rst b/classes/class_visualshadernodevaryinggetter.rst index 928fe3ebf39..83f5419e90e 100644 --- a/classes/class_visualshadernodevaryinggetter.rst +++ b/classes/class_visualshadernodevaryinggetter.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeVaryingGetter.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeVaryingGetter.xml. .. _class_VisualShaderNodeVaryingGetter: diff --git a/classes/class_visualshadernodevaryingsetter.rst b/classes/class_visualshadernodevaryingsetter.rst index 714ef3d8bec..a1b860975dc 100644 --- a/classes/class_visualshadernodevaryingsetter.rst +++ b/classes/class_visualshadernodevaryingsetter.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeVaryingSetter.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeVaryingSetter.xml. .. _class_VisualShaderNodeVaryingSetter: diff --git a/classes/class_visualshadernodevec2constant.rst b/classes/class_visualshadernodevec2constant.rst index 6e75e7d04ff..2e75ae90144 100644 --- a/classes/class_visualshadernodevec2constant.rst +++ b/classes/class_visualshadernodevec2constant.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeVec2Constant.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeVec2Constant.xml. .. _class_VisualShaderNodeVec2Constant: diff --git a/classes/class_visualshadernodevec2parameter.rst b/classes/class_visualshadernodevec2parameter.rst index 3876e2fff41..f3cc55ecbca 100644 --- a/classes/class_visualshadernodevec2parameter.rst +++ b/classes/class_visualshadernodevec2parameter.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeVec2Parameter.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeVec2Parameter.xml. .. _class_VisualShaderNodeVec2Parameter: diff --git a/classes/class_visualshadernodevec3constant.rst b/classes/class_visualshadernodevec3constant.rst index 2e6db594b19..df55d96eec0 100644 --- a/classes/class_visualshadernodevec3constant.rst +++ b/classes/class_visualshadernodevec3constant.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeVec3Constant.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeVec3Constant.xml. .. _class_VisualShaderNodeVec3Constant: diff --git a/classes/class_visualshadernodevec3parameter.rst b/classes/class_visualshadernodevec3parameter.rst index 06b5da1990d..7615d835f1e 100644 --- a/classes/class_visualshadernodevec3parameter.rst +++ b/classes/class_visualshadernodevec3parameter.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeVec3Parameter.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeVec3Parameter.xml. .. _class_VisualShaderNodeVec3Parameter: diff --git a/classes/class_visualshadernodevec4constant.rst b/classes/class_visualshadernodevec4constant.rst index 3c104ce3b9c..b56bd31bd76 100644 --- a/classes/class_visualshadernodevec4constant.rst +++ b/classes/class_visualshadernodevec4constant.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeVec4Constant.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeVec4Constant.xml. .. _class_VisualShaderNodeVec4Constant: diff --git a/classes/class_visualshadernodevec4parameter.rst b/classes/class_visualshadernodevec4parameter.rst index 5f0b22e9c2a..146d0496068 100644 --- a/classes/class_visualshadernodevec4parameter.rst +++ b/classes/class_visualshadernodevec4parameter.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeVec4Parameter.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeVec4Parameter.xml. .. _class_VisualShaderNodeVec4Parameter: diff --git a/classes/class_visualshadernodevectorbase.rst b/classes/class_visualshadernodevectorbase.rst index d42aca5346f..61da2c9f14d 100644 --- a/classes/class_visualshadernodevectorbase.rst +++ b/classes/class_visualshadernodevectorbase.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeVectorBase.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeVectorBase.xml. .. _class_VisualShaderNodeVectorBase: diff --git a/classes/class_visualshadernodevectorcompose.rst b/classes/class_visualshadernodevectorcompose.rst index 735d988345a..db3a2af84ff 100644 --- a/classes/class_visualshadernodevectorcompose.rst +++ b/classes/class_visualshadernodevectorcompose.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeVectorCompose.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeVectorCompose.xml. .. _class_VisualShaderNodeVectorCompose: diff --git a/classes/class_visualshadernodevectordecompose.rst b/classes/class_visualshadernodevectordecompose.rst index 5ba6a330530..51e64c3ea52 100644 --- a/classes/class_visualshadernodevectordecompose.rst +++ b/classes/class_visualshadernodevectordecompose.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeVectorDecompose.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeVectorDecompose.xml. .. _class_VisualShaderNodeVectorDecompose: diff --git a/classes/class_visualshadernodevectordistance.rst b/classes/class_visualshadernodevectordistance.rst index 147c49c4355..50d8b9682ce 100644 --- a/classes/class_visualshadernodevectordistance.rst +++ b/classes/class_visualshadernodevectordistance.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeVectorDistance.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeVectorDistance.xml. .. _class_VisualShaderNodeVectorDistance: diff --git a/classes/class_visualshadernodevectorfunc.rst b/classes/class_visualshadernodevectorfunc.rst index a8507384f4f..ab42a997332 100644 --- a/classes/class_visualshadernodevectorfunc.rst +++ b/classes/class_visualshadernodevectorfunc.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeVectorFunc.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeVectorFunc.xml. .. _class_VisualShaderNodeVectorFunc: diff --git a/classes/class_visualshadernodevectorlen.rst b/classes/class_visualshadernodevectorlen.rst index 44ccf60b2d8..7e1d89ba6c9 100644 --- a/classes/class_visualshadernodevectorlen.rst +++ b/classes/class_visualshadernodevectorlen.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeVectorLen.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeVectorLen.xml. .. _class_VisualShaderNodeVectorLen: diff --git a/classes/class_visualshadernodevectorop.rst b/classes/class_visualshadernodevectorop.rst index 305516d39e2..51d298d7776 100644 --- a/classes/class_visualshadernodevectorop.rst +++ b/classes/class_visualshadernodevectorop.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeVectorOp.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeVectorOp.xml. .. _class_VisualShaderNodeVectorOp: diff --git a/classes/class_visualshadernodevectorrefract.rst b/classes/class_visualshadernodevectorrefract.rst index f32fff90b44..887e4081592 100644 --- a/classes/class_visualshadernodevectorrefract.rst +++ b/classes/class_visualshadernodevectorrefract.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VisualShaderNodeVectorRefract.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VisualShaderNodeVectorRefract.xml. .. _class_VisualShaderNodeVectorRefract: diff --git a/classes/class_voxelgi.rst b/classes/class_voxelgi.rst index 7cbc3918da2..9df02e9a9e4 100644 --- a/classes/class_voxelgi.rst +++ b/classes/class_voxelgi.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VoxelGI.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VoxelGI.xml. .. _class_VoxelGI: diff --git a/classes/class_voxelgidata.rst b/classes/class_voxelgidata.rst index bc14248c553..e6e03288af7 100644 --- a/classes/class_voxelgidata.rst +++ b/classes/class_voxelgidata.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VoxelGIData.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VoxelGIData.xml. .. _class_VoxelGIData: diff --git a/classes/class_vscrollbar.rst b/classes/class_vscrollbar.rst index c33be5a0699..491f6a4e37b 100644 --- a/classes/class_vscrollbar.rst +++ b/classes/class_vscrollbar.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VScrollBar.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VScrollBar.xml. .. _class_VScrollBar: diff --git a/classes/class_vseparator.rst b/classes/class_vseparator.rst index ade81a36d94..1d9875317b4 100644 --- a/classes/class_vseparator.rst +++ b/classes/class_vseparator.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VSeparator.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VSeparator.xml. .. _class_VSeparator: diff --git a/classes/class_vslider.rst b/classes/class_vslider.rst index 368fe136e69..12187a96f4b 100644 --- a/classes/class_vslider.rst +++ b/classes/class_vslider.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VSlider.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VSlider.xml. .. _class_VSlider: diff --git a/classes/class_vsplitcontainer.rst b/classes/class_vsplitcontainer.rst index c68225bff7f..36118264ad4 100644 --- a/classes/class_vsplitcontainer.rst +++ b/classes/class_vsplitcontainer.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VSplitContainer.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VSplitContainer.xml. .. _class_VSplitContainer: diff --git a/classes/class_weakref.rst b/classes/class_weakref.rst index 4d59894aab7..80bc1c3cc94 100644 --- a/classes/class_weakref.rst +++ b/classes/class_weakref.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/WeakRef.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/WeakRef.xml. .. _class_WeakRef: diff --git a/classes/class_webrtcdatachannel.rst b/classes/class_webrtcdatachannel.rst index 6486ccf5b0d..99e6db01289 100644 --- a/classes/class_webrtcdatachannel.rst +++ b/classes/class_webrtcdatachannel.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/modules/webrtc/doc_classes/WebRTCDataChannel.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/modules/webrtc/doc_classes/WebRTCDataChannel.xml. .. _class_WebRTCDataChannel: diff --git a/classes/class_webrtcdatachannelextension.rst b/classes/class_webrtcdatachannelextension.rst index 8ac2aa8b967..dbbf57c3e19 100644 --- a/classes/class_webrtcdatachannelextension.rst +++ b/classes/class_webrtcdatachannelextension.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/modules/webrtc/doc_classes/WebRTCDataChannelExtension.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/modules/webrtc/doc_classes/WebRTCDataChannelExtension.xml. .. _class_WebRTCDataChannelExtension: diff --git a/classes/class_webrtcmultiplayerpeer.rst b/classes/class_webrtcmultiplayerpeer.rst index 1dc714aaf60..8dc2bd26454 100644 --- a/classes/class_webrtcmultiplayerpeer.rst +++ b/classes/class_webrtcmultiplayerpeer.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/modules/webrtc/doc_classes/WebRTCMultiplayerPeer.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/modules/webrtc/doc_classes/WebRTCMultiplayerPeer.xml. .. _class_WebRTCMultiplayerPeer: diff --git a/classes/class_webrtcpeerconnection.rst b/classes/class_webrtcpeerconnection.rst index 310b3f82385..c3cd36b5bdf 100644 --- a/classes/class_webrtcpeerconnection.rst +++ b/classes/class_webrtcpeerconnection.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/modules/webrtc/doc_classes/WebRTCPeerConnection.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/modules/webrtc/doc_classes/WebRTCPeerConnection.xml. .. _class_WebRTCPeerConnection: diff --git a/classes/class_webrtcpeerconnectionextension.rst b/classes/class_webrtcpeerconnectionextension.rst index 4f40090e223..353e2492438 100644 --- a/classes/class_webrtcpeerconnectionextension.rst +++ b/classes/class_webrtcpeerconnectionextension.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/modules/webrtc/doc_classes/WebRTCPeerConnectionExtension.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/modules/webrtc/doc_classes/WebRTCPeerConnectionExtension.xml. .. _class_WebRTCPeerConnectionExtension: diff --git a/classes/class_websocketmultiplayerpeer.rst b/classes/class_websocketmultiplayerpeer.rst index 2ec1fa173b2..17d33905881 100644 --- a/classes/class_websocketmultiplayerpeer.rst +++ b/classes/class_websocketmultiplayerpeer.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/modules/websocket/doc_classes/WebSocketMultiplayerPeer.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/modules/websocket/doc_classes/WebSocketMultiplayerPeer.xml. .. _class_WebSocketMultiplayerPeer: diff --git a/classes/class_websocketpeer.rst b/classes/class_websocketpeer.rst index 1cc7542a615..751ef92b1ca 100644 --- a/classes/class_websocketpeer.rst +++ b/classes/class_websocketpeer.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/modules/websocket/doc_classes/WebSocketPeer.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/modules/websocket/doc_classes/WebSocketPeer.xml. .. _class_WebSocketPeer: diff --git a/classes/class_webxrinterface.rst b/classes/class_webxrinterface.rst index 5b26677f6d6..22882463fcb 100644 --- a/classes/class_webxrinterface.rst +++ b/classes/class_webxrinterface.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/modules/webxr/doc_classes/WebXRInterface.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/modules/webxr/doc_classes/WebXRInterface.xml. .. _class_WebXRInterface: diff --git a/classes/class_window.rst b/classes/class_window.rst index 355ed743b7e..a1fc852e16b 100644 --- a/classes/class_window.rst +++ b/classes/class_window.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/Window.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/Window.xml. .. _class_Window: diff --git a/classes/class_workerthreadpool.rst b/classes/class_workerthreadpool.rst index 6e2cda3d480..3f3821e3bb8 100644 --- a/classes/class_workerthreadpool.rst +++ b/classes/class_workerthreadpool.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/WorkerThreadPool.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/WorkerThreadPool.xml. .. _class_WorkerThreadPool: diff --git a/classes/class_world2d.rst b/classes/class_world2d.rst index 48dd71d1b67..90f3bc9549c 100644 --- a/classes/class_world2d.rst +++ b/classes/class_world2d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/World2D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/World2D.xml. .. _class_World2D: diff --git a/classes/class_world3d.rst b/classes/class_world3d.rst index 0e66f4ca58e..6596de7c4e2 100644 --- a/classes/class_world3d.rst +++ b/classes/class_world3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/World3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/World3D.xml. .. _class_World3D: diff --git a/classes/class_worldboundaryshape2d.rst b/classes/class_worldboundaryshape2d.rst index 7df38521e85..71e3d02e88d 100644 --- a/classes/class_worldboundaryshape2d.rst +++ b/classes/class_worldboundaryshape2d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/WorldBoundaryShape2D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/WorldBoundaryShape2D.xml. .. _class_WorldBoundaryShape2D: diff --git a/classes/class_worldboundaryshape3d.rst b/classes/class_worldboundaryshape3d.rst index 62d4d912a24..694d9d28ee9 100644 --- a/classes/class_worldboundaryshape3d.rst +++ b/classes/class_worldboundaryshape3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/WorldBoundaryShape3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/WorldBoundaryShape3D.xml. .. _class_WorldBoundaryShape3D: diff --git a/classes/class_worldenvironment.rst b/classes/class_worldenvironment.rst index d957c6a09b2..259a76ca636 100644 --- a/classes/class_worldenvironment.rst +++ b/classes/class_worldenvironment.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/WorldEnvironment.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/WorldEnvironment.xml. .. _class_WorldEnvironment: diff --git a/classes/class_x509certificate.rst b/classes/class_x509certificate.rst index ffe0dbf26b3..f5ff8265df5 100644 --- a/classes/class_x509certificate.rst +++ b/classes/class_x509certificate.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/X509Certificate.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/X509Certificate.xml. .. _class_X509Certificate: diff --git a/classes/class_xmlparser.rst b/classes/class_xmlparser.rst index 79fd73c8cfe..28f33b413a4 100644 --- a/classes/class_xmlparser.rst +++ b/classes/class_xmlparser.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/XMLParser.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/XMLParser.xml. .. _class_XMLParser: diff --git a/classes/class_xranchor3d.rst b/classes/class_xranchor3d.rst index 8fb9ca261c2..02b966b9862 100644 --- a/classes/class_xranchor3d.rst +++ b/classes/class_xranchor3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/XRAnchor3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/XRAnchor3D.xml. .. _class_XRAnchor3D: diff --git a/classes/class_xrcamera3d.rst b/classes/class_xrcamera3d.rst index 5f795fec90a..c4be580427f 100644 --- a/classes/class_xrcamera3d.rst +++ b/classes/class_xrcamera3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/XRCamera3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/XRCamera3D.xml. .. _class_XRCamera3D: diff --git a/classes/class_xrcontroller3d.rst b/classes/class_xrcontroller3d.rst index 6c270f2f95a..c50341c13a9 100644 --- a/classes/class_xrcontroller3d.rst +++ b/classes/class_xrcontroller3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/XRController3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/XRController3D.xml. .. _class_XRController3D: diff --git a/classes/class_xrinterface.rst b/classes/class_xrinterface.rst index e9c8d4494b4..163948282e8 100644 --- a/classes/class_xrinterface.rst +++ b/classes/class_xrinterface.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/XRInterface.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/XRInterface.xml. .. _class_XRInterface: diff --git a/classes/class_xrinterfaceextension.rst b/classes/class_xrinterfaceextension.rst index 3ba8a436756..d67eb4510a8 100644 --- a/classes/class_xrinterfaceextension.rst +++ b/classes/class_xrinterfaceextension.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/XRInterfaceExtension.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/XRInterfaceExtension.xml. .. _class_XRInterfaceExtension: diff --git a/classes/class_xrnode3d.rst b/classes/class_xrnode3d.rst index bdb91adebfb..b3512eb521a 100644 --- a/classes/class_xrnode3d.rst +++ b/classes/class_xrnode3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/XRNode3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/XRNode3D.xml. .. _class_XRNode3D: diff --git a/classes/class_xrorigin3d.rst b/classes/class_xrorigin3d.rst index 31c8aaab479..ff9ee77f314 100644 --- a/classes/class_xrorigin3d.rst +++ b/classes/class_xrorigin3d.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/XROrigin3D.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/XROrigin3D.xml. .. _class_XROrigin3D: diff --git a/classes/class_xrpose.rst b/classes/class_xrpose.rst index d95d5d0bfbf..574e21c508a 100644 --- a/classes/class_xrpose.rst +++ b/classes/class_xrpose.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/XRPose.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/XRPose.xml. .. _class_XRPose: diff --git a/classes/class_xrpositionaltracker.rst b/classes/class_xrpositionaltracker.rst index b2f2ad96dee..27b3372e761 100644 --- a/classes/class_xrpositionaltracker.rst +++ b/classes/class_xrpositionaltracker.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/XRPositionalTracker.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/XRPositionalTracker.xml. .. _class_XRPositionalTracker: diff --git a/classes/class_xrserver.rst b/classes/class_xrserver.rst index a32116e915f..c39cf5ec78a 100644 --- a/classes/class_xrserver.rst +++ b/classes/class_xrserver.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/XRServer.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/XRServer.xml. .. _class_XRServer: diff --git a/classes/class_zippacker.rst b/classes/class_zippacker.rst index 04c2512fbc6..f4d78fb50ab 100644 --- a/classes/class_zippacker.rst +++ b/classes/class_zippacker.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/modules/zip/doc_classes/ZIPPacker.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/modules/zip/doc_classes/ZIPPacker.xml. .. _class_ZIPPacker: diff --git a/classes/class_zipreader.rst b/classes/class_zipreader.rst index 015e3a424a8..c4b2d308d31 100644 --- a/classes/class_zipreader.rst +++ b/classes/class_zipreader.rst @@ -2,8 +2,8 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. -.. XML source: https://github.com/godotengine/godot/tree/master/modules/zip/doc_classes/ZIPReader.xml. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. +.. XML source: https://github.com/godotengine/godot/tree/4.1/modules/zip/doc_classes/ZIPReader.xml. .. _class_ZIPReader: diff --git a/classes/index.rst b/classes/index.rst index 2e5296d1878..fe70a1925c6 100644 --- a/classes/index.rst +++ b/classes/index.rst @@ -2,7 +2,7 @@ .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. -.. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py. +.. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py. .. _doc_class_reference: diff --git a/community/tutorials.rst b/community/tutorials.rst index 4f7a92376df..8f40ad55a08 100644 --- a/community/tutorials.rst +++ b/community/tutorials.rst @@ -38,13 +38,14 @@ Video tutorials - `TheBuffED `_ (2D, GDScript). - `Code with Tom `_ (2D and 3D, GDScript). - `BornCG `_ (2D and 3D, GDScript). -- `Gonkee `_ (2D and 3D, GDScript, Shaders). - `TheGuideKnight `_ (2D, GDScript). - `GDScript Dude `_ (GDScript). - `Garbaj `_ (3D, GDScript). - `Kasper Frandsen `_ (3D, Shaders). - `bitbrain `_ (2D, GDScript). - `Gwizz `_ (2D, GDScript). +- `Quiver `_ (2D, GDScript). +- `Maker Tech `_ (2D, GDScript). Text tutorials -------------- @@ -52,7 +53,7 @@ Text tutorials - `FinepointCGI website by Mitch `__ - `GDScript website by Andrew Wilkes `__ - `Godot Recipes by KidsCanCode `__ -- `Steincodes `__ +- `Godot Tutorials by SomethingLikeGames `__ Devlogs ------- diff --git a/conf.py b/conf.py index 24cff328ccb..3f7f5efc8d4 100644 --- a/conf.py +++ b/conf.py @@ -84,7 +84,7 @@ # Version info for the project, acts as replacement for |version| and |release| # The short X.Y version -version = os.getenv("READTHEDOCS_VERSION", "latest") +version = os.getenv("READTHEDOCS_VERSION", "4.1") # The full version, including alpha/beta/rc tags release = version @@ -167,7 +167,7 @@ "display_github": not is_i18n, # Integrate GitHub "github_user": "godotengine", # Username "github_repo": "godot-docs", # Repo name - "github_version": "master", # Version + "github_version": "4.1", # Version "conf_py_path": "/", # Path in the checkout to the docs root "godot_inject_language_links": True, "godot_docs_supported_languages": list(supported_languages.keys()), @@ -181,8 +181,8 @@ "godot_title_prefix": "" if on_rtd else "(DEV) ", # Set this to `True` when in the `latest` branch to clearly indicate to the reader # that they are not reading the `stable` documentation. - "godot_is_latest": True, - "godot_version": "4.0", + "godot_is_latest": False, + "godot_version": "4.1", # Enables a banner that displays the up-to-date status of each article. "godot_show_article_status": True, } diff --git a/contributing/development/compiling/compiling_for_linuxbsd.rst b/contributing/development/compiling/compiling_for_linuxbsd.rst index e7633dad8b4..59a39220b95 100644 --- a/contributing/development/compiling/compiling_for_linuxbsd.rst +++ b/contributing/development/compiling/compiling_for_linuxbsd.rst @@ -270,7 +270,7 @@ Manager. SCons options ``target=template_release production=yes``. If you are compiling Godot with GCC, you can make the binary - even smaller and faster by adding the SCons option ``use_lto=yes``. + even smaller and faster by adding the SCons option ``lto=full``. As link-time optimization is a memory-intensive process, this will require about 7 GB of available RAM while compiling. diff --git a/contributing/development/compiling/compiling_for_macos.rst b/contributing/development/compiling/compiling_for_macos.rst index 6ba3c71c5fe..b6295466671 100644 --- a/contributing/development/compiling/compiling_for_macos.rst +++ b/contributing/development/compiling/compiling_for_macos.rst @@ -19,13 +19,8 @@ For compiling under macOS, the following is required: - `SCons 3.0+ `_ build system. - `Xcode `_ (or the more lightweight Command Line Tools for Xcode). - -.. warning:: - - If you are building the ``master`` branch, download and install the - `Vulkan SDK for macOS `__. This - is **required** to compile Godot 4.x, as MoltenVK is used to translate Vulkan - to Metal (macOS doesn't support Vulkan out of the box). +- `Vulkan SDK `_ + for MoltenVK (macOS doesn't support Vulkan out of the box). .. note:: If you have `Homebrew `_ installed, you can easily install SCons using the following command:: @@ -80,8 +75,9 @@ editor binary built with ``target=release_debug``:: cp -r misc/dist/macos_tools.app ./Godot.app mkdir -p Godot.app/Contents/MacOS - cp bin/godot.macos.opt.tools.universal Godot.app/Contents/MacOS/Godot + cp bin/godot.macos.tools.universal Godot.app/Contents/MacOS/Godot chmod +x Godot.app/Contents/MacOS/Godot + codesign --force --timestamp --options=runtime --entitlements misc/dist/macos/editor.entitlements -s - Godot.app .. note:: diff --git a/contributing/development/compiling/compiling_for_uwp.rst b/contributing/development/compiling/compiling_for_uwp.rst index 8d6a8618b95..f07e86a9cf1 100644 --- a/contributing/development/compiling/compiling_for_uwp.rst +++ b/contributing/development/compiling/compiling_for_uwp.rst @@ -3,152 +3,10 @@ Compiling for Universal Windows Platform ======================================== -.. highlight:: shell +.. important:: -.. seealso:: + Compiling UWP export templates is not implemented in Godot 4. + Godot 3 has limited UWP support, but there are many + `known issues `__. - This page describes how to compile UWP export template binaries from source. - If you're looking to export your project to UWP instead, read :ref:`doc_exporting_for_uwp`. - -Requirements ------------- - -- `Python 3.6+ `_. - **Make sure to enable the option to add Python to the ``PATH`` in the installer.** -- `SCons 3.0+ `_ build system. Using the - latest release is recommended, especially for proper support of recent Visual - Studio releases. -- Windows 10 SDK (can be selected in Visual Studio installation). -- `ANGLE source `__. Use the - ``ms_master`` (default) branch. Keep it in a path without spaces to - avoid problems. - -.. note:: The ANGLE repo by Microsoft has been discontinued and the - ``ms_master`` branch has been cleared out. - - As a temporary workaround however, it is still possible to - download an older state of the source code via commit - `c61d048 `__. - - This page will eventually be updated in the future to reflect - the new build instructions. - -.. seealso:: To get the Godot source code for compiling, see - :ref:`doc_getting_source`. - - For a general overview of SCons usage for Godot, see - :ref:`doc_introduction_to_the_buildsystem`. - -Compiling ---------- - -You need to open a proper Visual Studio prompt for the target architecture -you want to build. Check :ref:`doc_compiling_for_windows` to see how these -prompts work. - -There are three target architectures for UWP: x86 (32-bits), x64 (64-bits) -and ARM (32-bits). For the latter, you can run ``vcvarsall.bat`` with -``x86_arm`` or ``amd64_arm`` as argument to set the environment. - -Set the ``ANGLE_SRC_PATH`` to the directory where you downloaded the ANGLE -source code. The build process will also build ANGLE to produce the -required DLLs for the selected architecture. - -Once you're set, run the SCons command similarly to the other platforms:: - - C:\godot>scons platform=uwp - -Creating UWP export templates ------------------------------ - -To export using the editor you need to properly build package the templates. -You need all three architectures with ``debug`` and ``release`` templates to -be able to export. - -Open the command prompt for one architecture and run SCons twice (once for -each target):: - - C:\godot>scons platform=uwp target=template_debug - C:\godot>scons platform=uwp target=template_release - -Repeat for the other architectures. - -In the end your ``bin`` folder will have the ``.exe`` binaries with a name -like ``godot.uwp.opt.debug.32.x86.exe`` (with variations for each -target/arch). - -Copy one of these to ``misc/dist/uwp_template`` inside the Godot source -folder and rename the binary to ``godot.uwp.exe``. From the ANGLE source, -under ``winrt/10/src/Release_%arch%`` (where ``%arch%`` can be ``Win32``, -``x64`` or ``ARM``), get the ``libEGL.dll`` and the ``libGLESv2.dll``, -putting them along with the executable. - -Add the files in the ``uwp_template`` folder to a ZIP. Rename the resulting -Zip according to the target/architecture of the template:: - - uwp_x86_debug.zip - uwp_x86_release.zip - uwp_x64_debug.zip - uwp_x64_release.zip - uwp_arm_debug.zip - uwp_arm_release.zip - -Move those templates to the ``[versionstring]\templates`` folder in Godot -settings path, where `versionstring` is the version of Godot you have compiled -the export templates for - e.g. `3.0.alpha` for the alpha version of Godot 3. -If you don't want to replace the templates, you can set the "Custom Package" -property in the export window. - -Running UWP apps with Visual Studio ------------------------------------ - -If you want to debug the UWP port or simply run your apps without packaging -and signing, you can deploy and launch them using Visual Studio. It might be -the easiest way if you are testing on a device such as a Windows Phone or an -Xbox One. - -Within the ANGLE source folder, open ``templates`` and double-click the -``install.bat`` script file. This will install the Visual Studio project -templates for ANGLE apps. - -If you have not built Godot yet, open the ``winrt/10/src/angle.sln`` solution -from the ANGLE source and build it to Release/Win32 target. You may also need -to build it for ARM if you plan to run on a device. You can also use MSBuild if -you're comfortable with the command line. - -Create a new Windows App project using the "App for OpenGL ES -(Windows Universal)" project template, which can be found under the -``Visual C++/Windows/Universal`` category. - -This is a base project with the ANGLE dependencies already set up. However, by -default it picks the debug version of the DLLs which usually have poor -performance. So in the "Binaries" filter, click in each of the DLLs there -and in the "Properties" window and change the relative path from -``Debug_Win32`` to ``Release_Win32`` (or ``Release_ARM`` for devices). - -In the same "Binaries" filter, select "Add > Existing Item" and point to the -Godot executable for UWP you have. In the "Properties" window, set "Content" -to ``True`` so it's included in the project. - -Right-click the ``Package.appxmanifest`` file and select "Open With... > XML -(Text) Editor". In the ``Package/Applications/Application`` element, replace -the ``Executable`` attribute from ``$targetnametoken$.exe`` to -``godot.uwp.exe`` (or whatever your Godot executable is called). Also change -the ``EntryPoint`` attribute to ``GodotUWP.App``. This will ensure that -the Godot executable is correctly called when the app starts. - -Create a folder (*not* a filter) called ``game`` in your Visual Studio project -folder and there you can put either a ``data.pck`` file or your Godot project -files. After that, make sure to include it all with the "Add > Existing Item" -command and set their "Content" property to ``True`` so they're copied to the -app. - -To ease the workflow, you can open the "Solution Properties" and in the -"Configuration" section untick the "Build" option for the app. You still have -to build it at least once to generate some needed files, you can do so by -right-clicking the project (*not* the solution) in the "Solution Explorer" and -selecting "Build". - -Now you can just run the project and your app should open. You can also use -the "Start Without Debugging" option from the "Debug" menu (or press :kbd:`Ctrl + F5`) to make it -launch faster. + We recommend you use the :ref:`Win32 export ` instead. diff --git a/contributing/development/compiling/compiling_for_windows.rst b/contributing/development/compiling/compiling_for_windows.rst index 7c3ee4310a1..1753685857d 100644 --- a/contributing/development/compiling/compiling_for_windows.rst +++ b/contributing/development/compiling/compiling_for_windows.rst @@ -153,7 +153,7 @@ dependencies. Running it will bring up the Project Manager. SCons option ``target=template_release``. If you are compiling Godot with MinGW, you can make the binary - even smaller and faster by adding the SCons option ``use_lto=yes``. + even smaller and faster by adding the SCons option ``lto=full``. As link-time optimization is a memory-intensive process, this will require about 7 GB of available RAM while compiling. diff --git a/contributing/development/compiling/optimizing_for_size.rst b/contributing/development/compiling/optimizing_for_size.rst index 23757113dd0..a83d66fde60 100644 --- a/contributing/development/compiling/optimizing_for_size.rst +++ b/contributing/development/compiling/optimizing_for_size.rst @@ -79,7 +79,7 @@ and MSVC compilers: :: - scons p=windows target=template_release use_lto=yes + scons p=windows target=template_release lto=full Linking becomes much slower and more RAM-consuming with this option, so it should be used only for release builds: diff --git a/contributing/development/core_and_modules/2d_coordinate_systems.rst b/contributing/development/core_and_modules/2d_coordinate_systems.rst new file mode 100644 index 00000000000..5ddacf9c1ab --- /dev/null +++ b/contributing/development/core_and_modules/2d_coordinate_systems.rst @@ -0,0 +1,145 @@ +.. _doc_2d_coordinate_systems: + +2D coordinate systems and 2D transforms +======================================= + +Introduction +------------ + +This is a detailed overview of the available 2D coordinate systems and 2D transforms that are +built in. The basic concepts are covered in :ref:`doc_viewport_and_canvas_transforms`. + +:ref:`Transform2D ` are matrices that convert coordinates from one coordinate +system to an other. In order to use them, it is beneficial to know which coordinate systems are +available in Godot. For a deeper understanding, the :ref:`doc_matrices_and_transforms` tutorial +offers insights to the underlying functionality. + +Godot 2D coordinate systems +--------------------------- + +The following graphic gives an overview of Godot 2D coordinate systems and the available +node-transforms, transform-functions and coordinate-system related functions. At the left +is the OS Window Manager screen, at the right are the :ref:`CanvasItems `. For +simplicity reasons this graphic doesn't include :ref:`SubViewport `, +:ref:`SubViewportContainer `, :ref:`ParallaxLayer` +and :ref:`ParallaxBackground` all of which also influence transforms. + +The graphic is based on a node tree of the following form: ``Root Window (embed Windows)`` ⇒ +``Window (don't embed Windows)`` ⇒ ``CanvasLayer`` ⇒ ``CanvasItem`` ⇒ ``CanvasItem`` ⇒ +``CanvasItem``. There are more complex combinations possible, like deeply nested Window and +SubViewports, however this example intends to provide an overview of the methodology in general. + +.. image:: img/transforms_overview.webp + :target: ../../../_images/transforms_overview.webp + +Click graphic to enlarge. + +- **Item Coordinates** + This is the local coordinate system of a :ref:`CanvasItem `. + +- **Parent Item Coordinates** + This is the local coordinate system of the parent's *CanvasItem*. When positioning + *CanvasItems* in the *Canvas*, they usually inherit the transformations of their parent + *CanvasItems*. An exceptions is + :ref:`CanvasItems.top_level `. + +- **Canvas Coordinates** + As mentioned in the previous tutorial :ref:`doc_canvas_layers`, there are two types of canvases + (*Viewport* canvas and *CanvasLayer* canvas) and both have a canvas coordinate system. These + are also called world coordinates. A *Viewport* can contain multiple *Canvases* with different + coordinate systems. + +- **Viewport Coordinates** + This is the coordinate system of the :ref:`Viewport `. + +- **Camera Coordinates** + This is only used internally for functionality like 3D-camera ray projections. + +- **Embedder Coordinates / Screen Coordinates** + Every *Viewport* (*Window* or *SubViewport*) in the scene tree is embedded either in a + different node or in the OS Window Manager. This coordinate system's origin is identical to the + top-left corner of the *Window* or *SubViewport* and its scale is the one of the embedder or + the OS Window Manager. + + If the embedder is the OS Window Manager, then they are also called Screen Coordinates. + +- **Absolute Embedder Coordinates / Absolute Screen Coordinates** + The origin of this coordinate system is the top-left corner of the embedding node or the OS + Window Manager screen. Its scale is the one of the embedder or the OS Window Manager. + + If the embedder is the OS Window Manager, then they are also called Absolute Screen + Coordinates. + + +Node transforms +--------------- + +Each of the mentioned nodes have one or more transforms associated with them and the combination of +these nodes infer the transforms between the different coordinate systems. With a few exceptions, +the transforms are :ref:`Transform2D ` and the following list shows details and +effects of each of them. + +- **CanvasItem transform** + *CanvasItems* are either *Control*-nodes or *Node2D*-nodes. + + For *Control* nodes this transform consists of a :ref:`position ` + relative to the parent's origin and a :ref:`scale ` and + :ref:`rotation ` around a + :ref:`pivot point `. + + For *Node2D* nodes :ref:`transform ` consists of + :ref:`position `, :ref:`rotation `, + :ref:`scale ` and :ref:`skew `. + + The transform affects the item itself and usually also child-*CanvasItems* and in the case of a + *SubViewportContainer* it affects the contained *SubViewport*. + +- **CanvasLayer transform** + The *CanvasLayer's* :ref:`transform ` affects all + *CanvasItems* within the *CanvasLayer*. It doesn't affect other *CanvasLayers* or *Windows* in + its *Viewport*. + +- **CanvasLayer follow viewport transform** + The *follow viewport transform* is an automatically calculated transform, that is based on the + *Viewport's* :ref:`canvas transform ` and the + *CanvasLayer's* :ref:`follow viewport scale ` + and can be used, if :ref:`enabled `, to + achieve a pseudo 3D effect. It affects the same child nodes as the *CanvasLayer transform*. + +- **Viewport canvas transform** + The :ref:`canvas transform ` affects all + *CanvasItems* in the *Viewport's* default canvas. It also affects *CanvasLayers*, that have + follow viewport transform enabled. The *Viewport's* active :ref:`Camera2D ` + works by changing this transform. It doesn't affect this *Viewport's* embedded *Windows*. + +- **Viewport global canvas transform** + *Viewports* also have a :ref:`global canvas transform `. + This is the master transform and affects all individual *Canvas Layer* and embedded *Window* + transforms. This is primarily used in Godot's CanvasItem Editor. + +- **Viewport stretch transform** + Finally, *Viewports* have a *stretch transform*, which is used when resizing or stretching the + viewport. This transform is used for :ref:`Windows ` as described in + :ref:`doc_multiple_resolutions`, but can also be manually set on *SubViewports* by means of + :ref:`size ` and + :ref:`size_2d_override `. It's + :ref:`translation `, + :ref:`rotation ` and + :ref:`skew ` are the default values and it can only have + non-default :ref:`scale `. + +- **Window transform** + In order to scale and position the *Window's* content as described in + :ref:`doc_multiple_resolutions`, each :ref:`Window ` contains a + *window transform*. It is for example responsible for the black bars at the *Window's* sides so + that the *Viewport* is displayed with a fixed aspect ratio. + +- **Window position** + Every *Window* also has a :ref:`position ` to describe its + position within its embedder. The embedder can be another *Viewport* or the OS Window Manager. + +- **SubViewportContainer shrink transform** + :ref:`stretch ` together with + :ref:`stretch_shrink ` declare for a + *SubViewportContaner* if and by what integer factor the contained *SubViewport* should be + scaled in comparison to the container's size. diff --git a/contributing/development/core_and_modules/img/transforms_overview.webp b/contributing/development/core_and_modules/img/transforms_overview.webp new file mode 100644 index 00000000000..54ef748b0de Binary files /dev/null and b/contributing/development/core_and_modules/img/transforms_overview.webp differ diff --git a/contributing/development/core_and_modules/index.rst b/contributing/development/core_and_modules/index.rst index 3e65fab3a83..d0f991fe993 100644 --- a/contributing/development/core_and_modules/index.rst +++ b/contributing/development/core_and_modules/index.rst @@ -20,6 +20,7 @@ This section covers the basics that you will encounter in (almost) every source object_class inheritance_class_tree internal_rendering_architecture + 2d_coordinate_systems Extending Godot by modifying its source code -------------------------------------------- diff --git a/contributing/development/core_and_modules/internal_rendering_architecture.rst b/contributing/development/core_and_modules/internal_rendering_architecture.rst index dad9baa6ae2..0a0dd544dcb 100644 --- a/contributing/development/core_and_modules/internal_rendering_architecture.rst +++ b/contributing/development/core_and_modules/internal_rendering_architecture.rst @@ -337,8 +337,8 @@ this. **Core GLSL material shaders:** -- Forward+: `servers/rendering/renderer_rd/shaders/scene_forward_clustered.glsl `__ -- Forward Mobile: `servers/rendering/renderer_rd/shaders/scene_forward_mobile.glsl `__ +- Forward+: `servers/rendering/renderer_rd/shaders/forward_clustered/scene_forward_clustered.glsl `__ +- Forward Mobile: `servers/rendering/renderer_rd/shaders/forward_mobile/scene_forward_mobile.glsl `__ - Compatibility: `drivers/gles3/shaders/scene.glsl `__ **Material shader generation:** diff --git a/contributing/development/core_and_modules/unit_testing.rst b/contributing/development/core_and_modules/unit_testing.rst index d5a829bc73d..ffa912df170 100644 --- a/contributing/development/core_and_modules/unit_testing.rst +++ b/contributing/development/core_and_modules/unit_testing.rst @@ -48,8 +48,8 @@ arguments for doctest. .. note:: - Tests are compiled automatically if you use the ``dev=yes`` SCons option. - ``dev=yes`` is recommended if you plan on contributing to the engine + Tests are compiled automatically if you use the ``dev_mode=yes`` SCons option. + ``dev_mode=yes`` is recommended if you plan on contributing to the engine development as it will automatically treat compilation warnings as errors. The continuous integration system will fail if any compilation warnings are detected, so you should strive to fix all warnings before opening a pull diff --git a/contributing/development/debugging/using_cpp_profilers.rst b/contributing/development/debugging/using_cpp_profilers.rst index 4888f7b2857..72e2cf78106 100644 --- a/contributing/development/debugging/using_cpp_profilers.rst +++ b/contributing/development/debugging/using_cpp_profilers.rst @@ -29,14 +29,8 @@ To get useful profiling information, it is **absolutely required** to use a Godo build that includes debugging symbols. Official binaries do not include debugging symbols, since these would make the download size significantly larger. -To get profiling data that best matches the production environment, you should -compile binaries with the following SCons options: - -- For editor binaries: ``target=editor use_lto=yes`` -- For debug export templates: ``target=template_debug use_lto=yes`` -- For release export templates: ``target=template_release debug_symbols=yes`` - - - ``debug_symbols=yes`` is required as export templates are stripped from debugging symbols by default. +To get profiling data that best matches the production environment (but with debugging symbols), +you should compile binaries with the ``production=yes debug_symbols=yes`` SCons options. It is possible to run a profiler on less optimized builds (e.g. ``target=template_debug`` without LTO), but results will naturally be less representative of real world conditions. diff --git a/contributing/development/file_formats/tscn.rst b/contributing/development/file_formats/tscn.rst index 078f6727676..1b53c55cacf 100644 --- a/contributing/development/file_formats/tscn.rst +++ b/contributing/development/file_formats/tscn.rst @@ -1,5 +1,3 @@ -:article_outdated: True - .. _doc_tscn_file_format: TSCN file format @@ -17,41 +15,70 @@ SCN files stored inside the ``.godot/imported/`` folder. This reduces the data size and speeds up loading, as binary formats are faster to load compared to text-based formats. +To make files more compact, properties equal to the default value are not stored +in scene/resource files. It is possible to write them manually, but they will be +discarded when saving the file. + For those looking for a complete description, the parsing is handled in the file `resource_format_text.cpp `_ in the ``ResourceFormatLoaderText`` class. +.. note:: + + The scene and resource file formats have changed significantly in Godot 4, + with the introduction of string-based UIDs to replace incremental integer + IDs. + + Mesh, skeleton and animation data is also stored differently compared to Godot 3. + You can read about some of the changes in this article: + `Animation data rework for 4.0 `__ + + Scenes and resources saved with Godot 4.x contain ``format=3`` in their + header, whereas Godot 3.x uses ``format=2`` instead. + File structure -------------- There are five main sections inside the TSCN file: -0. File Descriptor +0. File descriptor 1. External resources 2. Internal resources 3. Nodes 4. Connections -The file descriptor looks like ``[gd_scene load_steps=3 format=2]`` and should -be the first entry in the file. The ``load_steps`` parameter is equal to the +The file descriptor looks like ``[gd_scene load_steps=4 format=3 uid="uid://cecaux1sm7mo0"]`` +and should be the first entry in the file. The ``load_steps`` parameter is equal to the total amount of resources (internal and external) plus one (for the file itself). If the file has no resources, ``load_steps`` is omitted. The engine will still load the file correctly if ``load_steps`` is incorrect, but this will affect loading bars and any other piece of code relying on that value. +``uid`` is an unique string-based identifier representing the scene. This is +used by the engine to track files that are moved around, even while the editor +is closed. Scripts can also load UID-based resources using the ``uid://`` path +prefix to avoid relying on filesystem paths. This makes it possible to move +around a file in the project, but still be able to load it in scripts without +having to modify the script. Godot does not use external files to keep track of +IDs, which means no central metadata storage location is required within the +project. See `this pull request `__ +for detailed information. + These sections should appear in order, but it can be hard to distinguish them. The only difference between them is the first element in the heading for all of the items in the section. For example, the heading of all external resources -should start with ``[ext_resource .....]``. +should start with ``[ext_resource ...]``. A TSCN file may contain single-line comments starting with a semicolon (``;``). However, comments will be discarded when saving the file using the Godot editor. +Whitespace within a TSCN file is not significant (except within strings), but +extraneous whitespace will be discarded when saving the file. Entries inside the file ~~~~~~~~~~~~~~~~~~~~~~~ A heading looks like -``[ key=value key=value key=value ...]`` +``[ key1=value1 key2=value2 key3=value3 ...]`` where resource_type is one of: - ``ext_resource`` @@ -65,27 +92,26 @@ so on. For example, a Node3D looks like: :: - [node name="Cube" type="Node3D" parent="."] - transform=Transform( 1.0, 0.0, 0.0 ,0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0 ) - + [node name="Cube" type="Node3D"] + transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 1, 2, 3) The scene tree -------------- The scene tree is made up of… nodes! The heading of each node consists of -its name, parent and (most of the time) a type. For example -``[node type="Camera" name="PlayerCamera" parent="Player/Head"]`` +its name, parent and (most of the time) a type. For example: +``[node name="PlayerCamera" type="Camera" parent="Player/Head"]`` Other valid keywords include: - ``instance`` - ``instance_placeholder`` - ``owner`` - - ``index`` (sets the order of appearance in the tree. If absent, inherited nodes will take precedence over plain ones) + - ``index`` (sets the order of appearance in the tree; if absent, inherited nodes will take precedence over plain ones) - ``groups`` -The first node in the file, which is also the scene root, must not have a -``parent=Path/To/Node`` entry in its heading. All scene files should have +The first node in the file, which is also the scene root, must **not** have a +``parent="Path/To/Node"`` entry in its heading. All scene files should have exactly *one* scene root. If it doesn't, Godot will fail to import the file. The parent path of other nodes should be absolute, but shouldn't contain the scene root's name. If the node is a direct child of the scene root, @@ -94,172 +120,140 @@ the path should be ``"."``. Here is an example scene tree :: - [node name="Player" type="Node3D"] ; The scene root - [node name="Arm" parent="." type="Node3D"] ; Parented to the scene root - [node name="Hand" parent="Arm" type="Node3D"] - [node name="Finger" parent="Arm/Hand" type="Node3D"] + [node name="Player" type="Node3D"] ; The scene root + [node name="Arm" type="Node3D" parent="."] ; Parented to the scene root + [node name="Hand" type="Node3D" parent="Arm"] ; Child of "Arm" + [node name="Finger" type="Node3D" parent="Arm/Hand"] ; Child of "Hand" +.. tip:: -Similar to the internal resource, the document for each node is currently -incomplete. Fortunately, it is easy to find out because you can simply -save a file with that node in it. Some example nodes are: + To make the file structure easier to grasp, you can saving a file with any + given node or resource then inspect it yourself in an external editor. You + can also make incremental changes in the Godot editor, and keep an external + text editor open on the ``.tscn`` or ``.tres`` file with auto-reload enabled + to see what changes. -:: - - [node type="CollisionShape" name="SphereCollision" parent="SpherePhysics"] - - shape = SubResource(8) - transform = Transform( 1.0 , 0.0 , -0.0 , 0.0 , -4.371138828673793e-08 , 1.0 , -0.0 , -1.0 , -4.371138828673793e-08 ,0.0 ,0.0 ,-0.0 ) +Here is an example of a scene containing a RigidBody3D-based ball with +collision, visuals (mesh + light) and a camera parented to the RigidBody3D: +:: - [node type="MeshInstance3D" name="Sphere" parent="SpherePhysics"] + [gd_scene load_steps=4 format=3 uid="uid://cecaux1sm7mo0"] - mesh = SubResource(9) - transform = Transform( 1.0 , 0.0 , -0.0 , 0.0 , 1.0 , -0.0 , -0.0 , -0.0 , 1.0 ,0.0 ,0.0 ,-0.0 ) + [sub_resource type="SphereShape3D" id="SphereShape3D_tj6p1"] + [sub_resource type="SphereMesh" id="SphereMesh_4w3ye"] - [node type="OmniLight" name="Lamp" parent="."] + [sub_resource type="StandardMaterial3D" id="StandardMaterial3D_k54se"] + albedo_color = Color(1, 0.639216, 0.309804, 1) - light_energy = 1.0 - light_specular = 1.0 - transform = Transform( -0.29086464643478394 , -0.7711008191108704 , 0.5663931369781494 , -0.05518905818462372 , 0.6045246720314026 , 0.7946722507476807 , -0.9551711678504944 , 0.199883371591568 , -0.21839118003845215 ,4.076245307922363 ,7.3235554695129395 ,-1.0054539442062378 ) - omni_range = 30 - shadow_enabled = true - light_negative = false - light_color = Color( 1.0, 1.0, 1.0, 1.0 ) + [node name="Ball" type="RigidBody3D"] + [node name="CollisionShape3D" type="CollisionShape3D" parent="."] + shape = SubResource("SphereShape3D_tj6p1") - [node type="Camera" name="Camera" parent="."] + [node name="MeshInstance3D" type="MeshInstance3D" parent="."] + mesh = SubResource("SphereMesh_4w3ye") + surface_material_override/0 = SubResource("StandardMaterial3D_k54se") - projection = 0 - near = 0.10000000149011612 - fov = 50 - transform = Transform( 0.6859206557273865 , -0.32401350140571594 , 0.6515582203865051 , 0.0 , 0.8953956365585327 , 0.44527143239974976 , -0.7276763319969177 , -0.3054208755493164 , 0.6141703724861145 ,14.430776596069336 ,10.093015670776367 ,13.058500289916992 ) - far = 100.0 + [node name="OmniLight3D" type="OmniLight3D" parent="."] + light_color = Color(1, 0.698039, 0.321569, 1) + omni_range = 10.0 + [node name="Camera3D" type="Camera3D" parent="."] + transform = Transform3D(1, 0, 0, 0, 0.939693, 0.34202, 0, -0.34202, 0.939693, 0, 1, 3) NodePath ~~~~~~~~ A tree structure is not enough to represent the whole scene. Godot uses a ``NodePath(Path/To/Node)`` structure to refer to another node or attribute of -the node anywhere in the scene tree. For instance, MeshInstance3D uses -``NodePath()`` to point to its skeleton. Likewise, Animation tracks use -``NodePath()`` to point to node properties to animate. +the node anywhere in the scene tree. Paths are relative to the current node, +with ``NodePath(".")`` pointing to the current node and ``NodePath("")`` +pointing to no node at all. -:: - - [node name="mesh" type="MeshInstance3D" parent="Armature001"] +For instance, MeshInstance3D uses ``NodePath()`` to point to its skeleton. +Likewise, Animation tracks use ``NodePath()`` to point to node properties to +animate. - mesh = SubResource(1) - skeleton = NodePath("..:") +NodePath can also point to a property using a ``:property_name`` suffix, and +even point to a specific component for vector, transform and color types. This +is used by Animation resources to point to specific properties to animate. For +example, ``NodePath("MeshInstance3D:scale.x")`` points to the ``x`` component of +the ``scale`` Vector3 property in MeshInstance3D. +For example, the ``skeleton`` property in the MeshInstance3D node called +``mesh`` points to its parent, ``Armature01``: :: - [sub_resource id=3 type="Animation"] + [node name="mesh" type="MeshInstance3D" parent="Armature01"] + skeleton = NodePath("..") - ... - tracks/0/type = "transform" - tracks/0/path = NodePath("Cube:") - ... +Skeleton3D +~~~~~~~~~~ +The :ref:`class_Skeleton3D` node inherits the Node3D node, but may alsohave a +list of bones described in key-value pairs in the format +``bones// = value``. The bone attributes consist of: -Skeleton -~~~~~~~~ +- ``position``: Vector3 +- ``rotation``: Quaternion +- ``scale``: Vector3 -The Skeleton node inherits the Node3D node, but also may have a list of bones -described in key-value pairs in the format ``bones/Id/Attribute=Value``. The -bone attributes consist of: - -- ``name`` -- ``parent`` -- ``rest`` -- ``pose`` -- ``enabled`` -- ``bound_children`` - -1. ``name`` must be the first attribute of each bone. -2. ``parent`` is the index of parent bone in the bone list, with parent index, - the bone list is built to a bone tree. -3. ``rest`` is the transform matrix of bone in its "resting" position. -4. ``pose`` is the pose matrix; use ``rest`` as the basis. -5. ``bound_children`` is a list of ``NodePath()`` which point to - BoneAttachments belonging to this bone. +These attributes are all optional. For instance, a bone may only define +``position`` or ``rotation`` without defining the other properties. Here's an example of a skeleton node with two bones: :: - [node name="Skeleton" type="Skeleton" parent="Armature001" index="0"] + [node name="Skeleton3D" type="Skeleton3D" parent="PlayerModel/Robot_Skeleton" index="0"] + bones/1/position = Vector3(0.114471, 2.19771, -0.197845) + bones/1/rotation = Quaternion(0.191422, -0.0471201, -0.00831942, 0.980341) + bones/2/position = Vector3(-2.59096e-05, 0.236002, 0.000347473) + bones/2/rotation = Quaternion(-0.0580488, 0.0310587, -0.0085914, 0.997794) + bones/2/scale = Vector3(0.9276, 0.9276, 0.9276) - bones/0/name = "Bone.001" - bones/0/parent = -1 - bones/0/rest = Transform( 1, 0, 0, 0, 0, -1, 0, 1, 0, 0.038694, 0.252999, 0.0877164 ) - bones/0/pose = Transform( 1.0, 0.0, -0.0, 0.0, 1.0, -0.0, -0.0, -0.0, 1.0, 0.0, 0.0, -0.0 ) - bones/0/enabled = true - bones/0/bound_children = [ ] - bones/1/name = "Bone.002" - bones/1/parent = 0 - bones/1/rest = Transform( 0.0349042, 0.99939, 0.000512929, -0.721447, 0.0248417, 0.692024, 0.691589, -0.0245245, 0.721874, 0, 5.96046e-08, -1.22688 ) - bones/1/pose = Transform( 1.0, 0.0, -0.0, 0.0, 1.0, -0.0, -0.0, -0.0, 1.0, 0.0, 0.0, -0.0 ) - bones/1/enabled = true - bones/1/bound_children = [ ] +BoneAttachment3D +~~~~~~~~~~~~~~~~ +The :ref:`class_BoneAttachment3D` node is an intermediate node to describe some +node being parented to a single bone in a Skeleton node. The BoneAttachment has +a ``bone_name = "name of bone"`` property, as well as a property for the matching +bone index. -BoneAttachment -~~~~~~~~~~~~~~ - -BoneAttachment node is an intermediate node to describe some node being parented -to a single bone in a Skeleton node. The BoneAttachment has a -``bone_name=NameOfBone`` attribute, and the corresponding bone being the parent has the -BoneAttachment node in its ``bound_children`` list. - -An example of one MeshInstance3D parented to a bone in Skeleton: +An example of a :ref:`class_Marker3D` node parented to a bone in Skeleton: :: - [node name="Armature" type="Skeleton" parent="."] - - transform = Transform(1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, -0.0219986, 0.0125825, 0.0343127) - bones/0/name = "Bone" - bones/0/parent = -1 - bones/0/rest = Transform(1.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0) - bones/0/pose = Transform(1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0) - bones/0/enabled = true - bones/0/bound_children = [NodePath("BoneAttachment:")] - - [node name="BoneAttachment" type="BoneAttachment" parent="Armature"] - - bone_name = "Bone" - - [node name="Cylinder" type="MeshInstance3D" parent="Armature/BoneAttachment"] - - mesh = SubResource(1) - transform = Transform(1.0, 0.0, 0.0, 0.0, 1.86265e-09, 1.0, 0.0, -1.0, 0.0, 0.0219986, -0.0343127, 2.25595) + [node name="GunBone" type="BoneAttachment3D" parent="PlayerModel/Robot_Skeleton/Skeleton3D" index="5"] + transform = Transform3D(0.333531, 0.128981, -0.933896, 0.567174, 0.763886, 0.308015, 0.753209, -0.632331, 0.181604, -0.323915, 1.07098, 0.0497144) + bone_name = "hand.R" + bone_idx = 55 + [node name="ShootFrom" type="Marker3D" parent="PlayerModel/Robot_Skeleton/Skeleton3D/GunBone"] + transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.4, 0) AnimationPlayer ~~~~~~~~~~~~~~~ -AnimationPlayer works as an animation library. It stores animations listed in -the format ``anim/Name=SubResource(ResourceId)``; each line refers to an -Animation resource. All the animation resources use the root node of -AnimationPlayer. The root node is stored as -``root_node=NodePath(Path/To/Node)``. +The :ref:`class_AnimationPlayer` node works with one or more animation libraries +stored in :ref:`class_AnimationLibrary` resources. An animation library is a +collection of individual :ref:`class_Animation` resources, whose structure is +documented :ref:`here `. -:: - - [node name="AnimationPlayer" type="AnimationPlayer" parent="." index="1"] - - root_node = NodePath("..") - autoplay = "" - playback_process_mode = 1 - playback_default_blend_time = 0.0 - playback_speed = 1.0 - anims/default = SubResource( 2 ) - blend_times = [ ] +This split between animations themselves and animation libraries was done in +Godot 4, so that animations can be imported separately from 3D meshes, which is +a common workflow in 3D animation software. See the `original pull request +`__ for details. +If the library name is empty, then it acts acts the unique source of animations +for this AnimationPlayer. This allows using ```` directly to +play animations from script. If you name the library, then you must play it as +``/``. This ensures backwards compatibility and +keeps the existing workflow if you don't want to use multiple animation +libraries. Resources --------- @@ -268,20 +262,26 @@ Resources are components that make up the nodes. For example, a MeshInstance3D node will have an accompanying ArrayMesh resource. The ArrayMesh resource may be either internal or external to the TSCN file. -References to the resources are handled by ``id`` numbers in the resource's -heading. External resources and internal resources are referred to with -``ExtResource(id)`` and ``SubResource(id)``, respectively. Because there +References to the resources are handled by unique string-based IDs in the +resource's heading. This is different from the ``uid`` property, which each +external resource also has (but subresources don't). + +External resources and internal resources are referred to with +``ExtResource("id")`` and ``SubResource("id")``, respectively. Because there have different methods to refer to internal and external resources, you can have the same ID for both an internal and external resource. -For example, to refer to the resource ``[ext_resource id=3 type="PackedScene" -path=....]``, you would use ``ExtResource(3)``. +For example, to refer to the resource +``[ext_resource type="Material" uid="uid://c4cp0al3ljsjv" path="res://material.tres" id="1_7bt6s"]``, +you would use ``ExtResource("1_7bt6s")``. External resources ~~~~~~~~~~~~~~~~~~ External resources are links to resources not contained within the TSCN file -itself. An external resource consists of a path, a type and an ID. +itself. An external resource consists of a path, a type, an UID (used to map its +filesystem location to an unique identifier) and an ID (used to refer to the +resource in the scene file). Godot always generates absolute paths relative to the resource directory and thus prefixed with ``res://``, but paths relative to the TSCN file's location @@ -291,13 +291,14 @@ Some example external resources are: :: - [ext_resource path="res://characters/player.dae" type="PackedScene" id=1] - [ext_resource path="metal.tres" type="Material" id=2] - + [ext_resource type="Texture2D" uid="uid://ccbm14ebjmpy1" path="res://gradient.tres" id="2_eorut"] + [ext_resource type="Material" uid="uid://c4cp0al3ljsjv" path="material.tres" id="1_7bt6s"] Like TSCN files, a TRES file may contain single-line comments starting with a semicolon (``;``). However, comments will be discarded when saving the resource using the Godot editor. +Whitespace within a TRES file is not significant (except within strings), but +extraneous whitespace will be discarded when saving the file. Internal resources ~~~~~~~~~~~~~~~~~~ @@ -310,140 +311,208 @@ heading. For example, a capsule collision shape looks like: :: - [sub_resource type="CapsuleShape" id=2] - - radius = 0.5 + [sub_resource type="CapsuleShape3D" id="CapsuleShape3D_fdxgg"] + radius = 1.0 height = 3.0 - Some internal resources contain links to other internal resources (such as a mesh having a material). In this case, the referring resource must appear *before* the reference to it. This means that order matters in the file's internal resources section. -Unfortunately, documentation on the formats for these subresources isn't -complete. Some examples can be found by inspecting saved resource files, but -others can only be found by looking through Godot's source. - ArrayMesh ~~~~~~~~~ -ArrayMesh consists of several surfaces, each in the format ``surface\Index={}``. -Each surface is a set of vertices and a material. - -TSCN files support two surface formats: +An ArrayMesh consists of several surfaces contained in the ``_surfaces`` array +(notice the leading underscore). Each surface's data is stored in a dictionary +with the following keys: + +- ``aabb``: The computed axis-aligned bounding box for visibility. + ``Mesh.PrimitiveType`` Godot enum. ``0`` = points, ``1`` = lines, ``2`` = line + strip, ``3`` = triangles (most common), ``4`` = triangle strip. +- ``attribute_data``: Vertex attribute data, such as normals, tangents, vertex + colors, UV1, UV2 and custom vertex data. +- ``bone_aabbs``: The axis-aligned bounding box of each bone for visibility. +- ``format``: The surface's buffer format. +- ``index_count``: The number of indices in the surface. This must match + ``index_data``'s size. +- ``index_data``: The index data, which determines which vertices from + ``vertex_data`` are drawn. +- ``lods``: Level of detail variations, stored as an array. Each LOD level + represents two values in the array. The first value is the percentage of + screen space the LOD level is most suited for (edge length); the second value + is the list of indices that should be drawn for the given LOD level. +- ``material``: The material used when drawing the surface. +- ``name``: The surface's name. This can be used in scripts and is imported from + 3D DCCs. +- ``primitive``: The surface's primitive type, matching the +- ``skin_data``: Bone weight data. +- ``vertex_count``: Number of vertices in the surface. This must match ``vertex_data``'s size. +- ``vertex_data``: The vertex position data. + +Here's an example of an ArrayMesh saved to its own ``.tres`` file. Some fields were shortened with ``...`` for brevity: -1. For the old format, each surface has three essential keys: - -- ``primitive`` -- ``arrays`` -- ``morph_arrays`` +:: - i. ``primitive`` is an enumerate variable, ``primitive=4`` which is - ``PRIMITIVE_TRIANGLES`` is frequently used. + [gd_resource type="ArrayMesh" load_steps=2 format=3 uid="uid://dww8o7hsqrhx5"] + + [ext_resource type="Material" path="res://player/model/playerobot.tres" id="1_r3bjq"] + + [resource] + resource_name = "player_Sphere_016" + _surfaces = [{ + "aabb": AABB(-0.207928, 1.21409, -0.14545, 0.415856, 0.226569, 0.223374), + "attribute_data": PackedByteArray(63, 121, ..., 117, 63), + "bone_aabbs": [AABB(0, 0, 0, -1, -1, -1), ..., AABB(-0.207928, 1.21409, -0.14545, 0.134291, 0.226569, 0.223374)], + "format": 7191, + "index_count": 1224, + "index_data": PackedByteArray(30, 0, ..., 150, 4), + "lods": [0.0382013, PackedByteArray(33, 1, ..., 150, 4)], + "material": ExtResource("1_r3bjq"), + "name": "playerobot", + "primitive": 3, + "skin_data": PackedByteArray(15, 0, ..., 0, 0), + "vertex_count": 1250, + "vertex_data": PackedByteArray(196, 169, ..., 11, 38) + }] + blend_shape_mode = 0 + +.. _doc_tscn_animation: - ii. ``arrays`` is a two-dimensional array, it contains: +Animation +~~~~~~~~~ - 1. Vertex positions array - 2. Normals array - 3. Tangents array - 4. Vertex colors array - 5. UV array 1 - 6. UV array 2 - 7. Bone indexes array - 8. Bone weights array - 9. Vertex indexes array +Each animation has the following properties: - iii. ``morph_arrays`` is an array of morphs. Each morph is exactly an - ``arrays`` without the vertex indexes array. +- ``length``: The animation's length in seconds. Note that keyframes may be + placed outside the ``[0; length]`` interval, but they may have no effect + depending on the interpolation mode chosen. +- ``loop_mode``: ``0`` = no looping, ``1`` = wrap-around looping, ``2`` = + clamped looping. +- ``step``: The step size to use when editing this animation in the editor. + This is only used in the editor; it doesn't affect animation playback in any way. -An example of ArrayMesh: +Each track is described by a list of key-value pairs in the format +``tracks//``. Each track includes: + +- ``type``: The track's type. This defines what kind of properties may be + animated by this track, and how it'll be exposed to the user in the editor. + Valid types are ``value`` (generic property track), ``position_3d``, + ``rotation_3d``, ``scale_3d``, ``blend_shape`` (optimized 3D animation + tracks), ``method`` (method call tracks), ``bezier`` (Bezier curve tracks), + ``audio`` (audio playback tracks), ``animation`` (tracks that play other + animations). +- ``imported``: ``true`` if the track was created from an imported 3D scene, + ``false`` if it was manually created by the user in the Godot editor or using + a script. +- ``enabled``: ``true`` if the track is effective, ``false`` if it was disabled + in the editor. +- ``path``: Path to the node property that will be affected by the track. The + property is written after the node path with a ``:`` separator. +- ``interp``: The interpolation mode to use. ``0`` = nearest, ``1`` = linear, + ``2`` = cubic, ``3`` = linear angle, ``4`` = cubic angle. +- ``loop_wrap``: ``true`` if the track is designed to wrap around when the + animation is looping, ``false`` if the track clamps to the first/last + keyframes. +- ``keys``: The animation track's values. This attribute's structure depends on the ``type``. + +Here is a scene containing an AnimationPlayer that scales down a cube over time +using a generic property track. The AnimationLibrary workflow was not used, so +the animation library has an empty name (but the animation is still given a +``scale_down`` name). Note that the ``RESET`` track was not created in this +AnimationPlayer for brevity: :: - [sub_resource id=1 type="ArrayMesh"] - - surfaces/0 = { - "primitive":4, - "arrays":[ - Vector3Array(0.0, 1.0, -1.0, 0.866025, -1.0, -0.5, 0.0, -1.0, -1.0, 0.866025, 1.0, -0.5, 0.866025, -1.0, 0.5, 0.866025, 1.0, 0.5, -8.74228e-08, -1.0, 1.0, -8.74228e-08, 1.0, 1.0, -0.866025, -1.0, 0.5, -0.866025, 1.0, 0.5, -0.866025, -1.0, -0.5, -0.866025, 1.0, -0.5), - Vector3Array(0.0, 0.609973, -0.792383, 0.686239, -0.609973, -0.396191, 0.0, -0.609973, -0.792383, 0.686239, 0.609973, -0.396191, 0.686239, -0.609973, 0.396191, 0.686239, 0.609973, 0.396191, 0.0, -0.609973, 0.792383, 0.0, 0.609973, 0.792383, -0.686239, -0.609973, 0.396191, -0.686239, 0.609973, 0.396191, -0.686239, -0.609973, -0.396191, -0.686239, 0.609973, -0.396191), - null, ; No Tangents, - null, ; no Vertex Colors, - null, ; No UV1, - null, ; No UV2, - null, ; No Bones, - null, ; No Weights, - IntArray(0, 2, 1, 3, 1, 4, 5, 4, 6, 7, 6, 8, 0, 5, 9, 9, 8, 10, 11, 10, 2, 1, 10, 8, 0, 1, 3, 3, 4, 5, 5, 6, 7, 7, 8, 9, 5, 0, 3, 0, 9, 11, 9, 5, 7, 9, 10, 11, 11, 2, 0, 10, 1, 2, 1, 6, 4, 6, 1, 8) - ], - "morph_arrays":[] - } + [gd_scene load_steps=4 format=3 uid="uid://cdyt3nktp6y6"] + [sub_resource type="Animation" id="Animation_r2qdp"] + resource_name = "scale_down" + length = 1.5 + loop_mode = 2 + step = 0.05 + tracks/0/type = "value" + tracks/0/imported = false + tracks/0/enabled = true + tracks/0/path = NodePath("Box:scale") + tracks/0/interp = 1 + tracks/0/loop_wrap = true + tracks/0/keys = { + "times": PackedFloat32Array(0, 1), + "transitions": PackedFloat32Array(1, 1), + "update": 0, + "values": [Vector3(1, 1, 1), Vector3(0, 0, 0)] + } -Animation -~~~~~~~~~ + [sub_resource type="AnimationLibrary" id="AnimationLibrary_4qx36"] + _data = { + "scale_down": SubResource("Animation_r2qdp") + } -An animation resource consists of tracks. Besides, it has ``length``, ``loop`` -and ``step`` applied to all the tracks. + [sub_resource type="BoxMesh" id="BoxMesh_u688r"] -1. ``length`` and ``step`` are both durations in seconds. + [node name="Node3D" type="Node3D"] -Each track is described by a list of key-value pairs in the format -``tracks/Id/Attribute``. Each track includes: + [node name="AnimationPlayer" type="AnimationPlayer" parent="."] + autoplay = "scale_down" + libraries = { + "": SubResource("AnimationLibrary_4qx36") + } -- ``type`` -- ``path`` -- ``interp`` -- ``keys`` -- ``loop_wrap`` -- ``imported`` -- ``enabled`` + [node name="Box" type="MeshInstance3D" parent="."] + mesh = SubResource("BoxMesh_u688r") -1. The ``type`` must be the first attribute of each track. - The value of ``type`` can be: +For generic property ``value`` tracks, ``keys`` is a dictionary containing 3 +arrays with positions in ``times`` (PackedFloat32Array), easing values in +``transitions`` (PackedFloat32Array) and values in ``values`` (Array). There is +an additional ``update`` property, which is an integer with the values ``0`` = +continuous, ``1`` = discrete, ``2`` = capture. - - ``transform`` - - ``value`` - - ``method`` +Here is a second Animation resource that makes use of the 3D Position and 3D +Rotation tracks. These tracks (in addition to the 3D Scale track) replace +Transform tracks from Godot 3. They are optimized for fast playback and can +optionally be compressed. -2. The ``path`` has the format ``NodePath(Path/To/Node:attribute)``. - It's the path to the animated node or attribute, relative to the root node - defined in the AnimationPlayer. +The downside of these optimized track types is that they can't use custom easing +values. Instead, all keyframes use linear interpolation. That said, you can +still opt for using nearest or cubic interpolation for all keyframes in a given +track by changing the track's interpolation mode. -3. The ``interp`` is the method to interpolate frames from the keyframes. - It is an enum variable with one of the following values: +:: - - ``0`` (constant) - - ``1`` (linear) - - ``2`` (cubic) + [sub_resource type="Animation" id="Animation_r2qdp"] + resource_name = "move_and_rotate" + length = 1.5 + loop_mode = 2 + step = 0.05 + tracks/0/type = "position_3d" + tracks/0/imported = false + tracks/0/enabled = true + tracks/0/path = NodePath("Box") + tracks/0/interp = 1 + tracks/0/loop_wrap = true + tracks/0/keys = PackedFloat32Array(0, 1, 0, 0, 0, 1.5, 1, 1.5, 1, 0) + tracks/1/type = "rotation_3d" + tracks/1/imported = false + tracks/1/enabled = true + tracks/1/path = NodePath("Box") + tracks/1/interp = 1 + tracks/1/loop_wrap = true + tracks/1/keys = PackedFloat32Array(0, 1, 0.211, -0.047, 0.211, 0.953, 1.5, 1, 0.005, 0.976, -0.216, 0.022) -4. The ``keys`` correspond to the keyframes. It appears as a ``PackedFloat32Array()``, - but may have a different structure for tracks with different types. +For 3D position, rotation and scale tracks, ``keys`` is a PackedFloat32Array +with all values stored in a sequence. - - A Transform track uses every 12 real numbers in the ``keys`` to describe - a keyframe. The first number is the timestamp. The second number is the - transition followed by a 3-number translation vector, followed by a - 4-number rotation quaternion (X, Y, Z, W) and finally a 3-number - scale vector. The default transition in a Transform track is 1.0. +In the visual guide below, ``T`` is the keyframe's time in seconds since the +start of the animation, ``E`` is the keyframe's transition (currently always +``1``). For 3D position and scale tracks, ``X``, ``Y``, ``Z`` are the Vector3's +coordinates. For 3D rotation tracks, ``X``, ``Y``, ``Z`` and ``W`` are the +Quaternion's coordinates. :: - [sub_resource type="Animation" id=2] + # For 3D position and scale, which use Vector3: + tracks//keys = PackedFloat32Array(T, E, X, Y, Z, T, E, X, Y, Z, ...) - length = 4.95833 - loop = false - step = 0.1 - tracks/0/type = "transform" - tracks/0/path = NodePath("Armature001") - tracks/0/interp = 1 - tracks/0/loop_wrap = true - tracks/0/imported = true - tracks/0/enabled = true - tracks/0/keys = PackedFloat32Array( 0, 1, -0.0358698, -0.829927, 0.444204, 0, 0, 0, 1, 0.815074, 0.815074, 0.815074, 4.95833, 1, -0.0358698, -0.829927, 0.444204, 0, 0, 0, 1, 0.815074, 0.815074, 0.815074 ) - tracks/1/type = "transform" - tracks/1/path = NodePath("Armature001/Skeleton:Bone.001") - tracks/1/interp = 1 - tracks/1/loop_wrap = true - tracks/1/imported = true - tracks/1/enabled = false - tracks/1/keys = PackedFloat32Array( 0, 1, 0, 5.96046e-08, 0, 0, 0, 0, 1, 1, 1, 1, 4.95833, 1, 0, 5.96046e-08, 0, 0, 0, 0, 1, 1, 1, 1 ) + # For 3D rotation, which use Quaternion: + tracks//keys = PackedFloat32Array(T, E, X, Y, Z, W, T, E, X, Y, Z, W, ...) diff --git a/contributing/documentation/docs_image_guidelines.rst b/contributing/documentation/docs_image_guidelines.rst index 35099531657..36002f8fff8 100644 --- a/contributing/documentation/docs_image_guidelines.rst +++ b/contributing/documentation/docs_image_guidelines.rst @@ -41,7 +41,11 @@ While some Linux programs will support saving screenshots in this format, macOS and the Snip & Sketch program on Windows do not. For images that don't need editing, such as precise cropping or adding outlines, Squoosh can be used. `Squoosh `_ is a converter developed by Google, is open -source, and doesn't give Google any image rights by using it. +source, and doesn't give Google any image rights by using it. When choosing +compression if you can get an image that's under 300KB in size use lossless +compression. If it's over 300KB use just enough lossy compression to get it +under that size. If this results in noticable compression artifacts using less +compression is fine, even if the file size is bigger. If you already have an image editor such as GIMP, Krita or Photoshop installed it may have the ability to open an image then save it as a WebP file. @@ -101,6 +105,11 @@ To save an image as webp if it isn't already one, Go to **File > Save As**. Sele will popup with webp options. Make sure **Losses** is checked and **Quality** is set to 100%. This means the image will not lose detail and will be as small as possible. +If the image is over 300KB in size try compressing it losslessly using `Squoosh `_. +If it's still over 300KB change to lossy compression and slowly increase the compression until it's under +300KB. If this results in noticable compression artifacts using less compression is fine, even if the file +size is bigger. + Outlines arrows and text ------------------------ diff --git a/contributing/workflow/bisecting_regressions.rst b/contributing/workflow/bisecting_regressions.rst index 6e281402701..5e55a1598ba 100644 --- a/contributing/workflow/bisecting_regressions.rst +++ b/contributing/workflow/bisecting_regressions.rst @@ -92,6 +92,13 @@ following commit hashes depending on the version: .. code-block:: none + 4.1.1-stable + 4.1-stable + 4.0.3-stable + 4.0.2-stable + 4.0.1-stable + 4.0-stable + 3.5.2-stable 3.5.1-stable 3.5-stable 3.4.5-stable diff --git a/contributing/workflow/bug_triage_guidelines.rst b/contributing/workflow/bug_triage_guidelines.rst index fbe2b493f2b..0d1092d65ed 100644 --- a/contributing/workflow/bug_triage_guidelines.rst +++ b/contributing/workflow/bug_triage_guidelines.rst @@ -45,8 +45,6 @@ The following labels are currently defined in the Godot repository: - *Bug*: describes something that is not working properly. - *Cherrypick*: describes something that can be backported to a stable branch after being merged in the ``master`` branch. -- *Crash:* describes a bug that causes the engine to crash. - This label is only used for "hard" crashes, not freezes. - *Confirmed*: has been confirmed by at least one other contributor than the bug reporter (typically for *Bug* reports). The purpose of this label is to let developers know which issues are @@ -55,6 +53,8 @@ The following labels are currently defined in the Godot repository: what version or commit of Godot the issue could be reproduced; if a developer looks at the issue one year later, the *Confirmed* label may not be relevant anymore. +- *Crash:* describes a bug that causes the engine to crash. + This label is only used for "hard" crashes, not freezes. - *Discussion*: the issue is not consensual and needs further discussion to define what exactly should be done to address the topic. @@ -71,21 +71,20 @@ The following labels are currently defined in the Godot repository: - *For PR meeting*: the issue needs to be discussed in a pull request meeting. These meetings are public and are held on the `Godot Contributors Chat `_. - *Good first issue*: the issue is *assumed* to be an easy one to fix, which makes - it a great fit for new contributors who need to become familiar with - the code base. + it a great fit for new contributors who want to become familiar with + the code base. It should be removed while an active PR is available, that + resolves this issue. - *High priority:* the issue is particularly important as it can prevent people from releasing their projects or cause data loss. -- *Needs work*: the pull request needs additional work before it can be merged. - *Needs testing*: the issue/pull request could not be completely tested and thus need further testing. This can mean that it needs to be tested on different hardware/software configurations or even that the steps to reproduce are not certain. +- *Needs work*: the pull request needs additional work before it can be merged. - *Performance*: issues that directly impact engine or editor performance. Can also be used for pull requests that improve performance or add low-end-friendly options. Should not be coupled with *Usability*. -- *PR welcome / Hero wanted!*: Contributions for issues with these labels - are especially welcome. Note that this **doesn't** mean you can't work - on issues without these labels. +- *Production*: Relates to the production team. - *Regression*: the bug appeared after a stable release not exhibiting the bug was released. - *Salvageable*: the pull request can't be merged due to design issues or @@ -101,6 +100,8 @@ combined in some way when relevant, e.g. an issue can be labelled *Enhancement* and *Usability* at the same time if it's an issue to improve usability. Or *Feature proposal* and *Discussion* if it's a non-consensual feature request, or one that is not precise enough to be worked on. +At least one of the categories *Bug*, *Enhancement* or *Discussion* is used to +describe an issue or pull request. **Topics:** @@ -118,12 +119,12 @@ feature request, or one that is not precise enough to be worked on. - *Export*: relates to the export system and templates. - *GDExtension*: relates to the GDExtension system for native extensions. - *GDScript*: relates to GDScript. -- *GUI*: relates to GUI (Control) nodes. +- *GUI*: relates to GUI (Control) nodes or to Nodes that compose user interfaces. - *Import*: relates to the resource import system. -- *Input*: relates to input system. +- *Input*: relates to the input system. +- *Multiplayer*: relates to multiplayer (high-level networking) systems. - *Navigation*: relates to the navigation system (including A* and navmeshes). - *Network*: relates to (lot-level) networking. -- *Multiplayer*: relates to multiplayer (high-level networking) systems. - *Particles*: particles, particle systems and their editors. - *Physics*: relates to the physics engine (2D/3D). - *Plugin*: relates to problems encountered while writing plugins. @@ -154,27 +155,52 @@ Documentation labels In the `documentation repository `__, we use the following labels: +- *Archived*: either a duplicate of another issue, or invalid. Such an + issue would also be closed. - *Bug*: Incorrect information in an existing page. Not to be used for *missing* information. -- *Class reference*: the issue is about the class reference, not a documentation page. +- *Cherrypick*: describes something that can be backported to a stable branch + after being merged in the ``master`` branch. +- *Dependencies*: describes pull requests that update a dependency file. - *Discussion*: the issue is not consensual and needs further discussion to define what exactly should be done to address the topic. - *Enhancememnt*: new information to be added in an existing page. -- *New page*: a new page to be created. -- *Hero wanted!*: contributions for issues with these labels - are especially welcome. Note that this **doesn't** mean you can't work - on issues without these labels. -- *Organization*: The issue involves moving pages around or reorganizing content. -- *Redirect*: a redirection needs to be created in the Read the Docs backend. - Only administrators can do this. +- *Good first issue*: the issue is *assumed* to be an easy one to fix, which makes + it a great fit for new contributors who want to become familiar with + the code base. It should be removed while an active PR is available, that + resolves this issue. +- *Needs work*: the pull request needs additional work before it can be merged. +- *Python*: Pull requests that update Python code. - *Salvageable*: the pull request can't be merged due to design issues or merge conflicts and its author is not active anymore. However, it can still be picked up by an external contributor to bring it to a mergeable state. To do so, you need to open a new pull request based on the original pull request. -- *Topic:Dotnet*: the issue is about C# support in Godot. -- *Topic:Website*: the issue relates to the Sphinx/Read the Docs frontend or backend, - not the documentation contents. +- *Tracker*: issue used to track other issues (like all issues related to + the plugin system). + +**Area:** + +- *About*: Issues and PRs related to the About section of the documentation and other general articles. +- *Class reference*: the issue is about the class reference, not a documentation page. +- *Community*: Issues and PRs related to the Community section of the documentation. +- *Contributing*: Issues and PRs related to the Contributing/Development section of the documentation. +- *Getting started*: Issues and PRs related to the Getting Started section of the documentation. +- *Manual*: Issues and PRs related to the Manual/Tutorials section of the documentation. + +**Content:** + +- *Images*: Issues and PRs involving outdated or incorrect images in articles. +- *New page*: Issues and PRs related to creation of new documentation pages for new or undocumented features. +- *Organization*: Issues and PRs related to reorganizing the content. +- *Proofreading*: Issues and PRs related to proofreading the documentation. +- *Redirect*: Issues and PRs involving moving content and adding a redirect rule on the backend. +- *Website*: Issues related to adding website features and fixing bugs, whether on the front or back-end, + +**Topic:** + +The available topics describe the same content as the topics in the main +repository. Milestones ~~~~~~~~~~ diff --git a/contributing/workflow/img/testing_pull_requests_access_checks.png b/contributing/workflow/img/testing_pull_requests_access_checks.png deleted file mode 100644 index 1bd13ac22c8..00000000000 Binary files a/contributing/workflow/img/testing_pull_requests_access_checks.png and /dev/null differ diff --git a/contributing/workflow/img/testing_pull_requests_access_checks.webp b/contributing/workflow/img/testing_pull_requests_access_checks.webp new file mode 100644 index 00000000000..4f5568729c2 Binary files /dev/null and b/contributing/workflow/img/testing_pull_requests_access_checks.webp differ diff --git a/contributing/workflow/img/testing_pull_requests_checks_artifacts.png b/contributing/workflow/img/testing_pull_requests_checks_artifacts.png deleted file mode 100644 index 25697e2679a..00000000000 Binary files a/contributing/workflow/img/testing_pull_requests_checks_artifacts.png and /dev/null differ diff --git a/contributing/workflow/img/testing_pull_requests_checks_artifacts.webp b/contributing/workflow/img/testing_pull_requests_checks_artifacts.webp new file mode 100644 index 00000000000..c336fb5aea8 Binary files /dev/null and b/contributing/workflow/img/testing_pull_requests_checks_artifacts.webp differ diff --git a/contributing/workflow/img/testing_pull_requests_checks_artifacts_list.webp b/contributing/workflow/img/testing_pull_requests_checks_artifacts_list.webp new file mode 100644 index 00000000000..d758290d9cf Binary files /dev/null and b/contributing/workflow/img/testing_pull_requests_checks_artifacts_list.webp differ diff --git a/contributing/workflow/img/testing_pull_requests_checks_platforms.png b/contributing/workflow/img/testing_pull_requests_checks_platforms.png deleted file mode 100644 index 2575abc848c..00000000000 Binary files a/contributing/workflow/img/testing_pull_requests_checks_platforms.png and /dev/null differ diff --git a/contributing/workflow/testing_pull_requests.rst b/contributing/workflow/testing_pull_requests.rst index f17cdb0dda8..8521bdedf52 100644 --- a/contributing/workflow/testing_pull_requests.rst +++ b/contributing/workflow/testing_pull_requests.rst @@ -31,24 +31,23 @@ If you have a GitHub account - Open the pull request page. Click the **Checks** tab near the top of the page: -.. image:: img/testing_pull_requests_access_checks.png +.. image:: img/testing_pull_requests_access_checks.webp -- In the list of platforms that appears on the left, select your platform by clicking - it then choose the type of build you need (editor or export template). - If in doubt, select an editor build: +- Click the **Artifacts** dropdown on the right of the page: -.. image:: img/testing_pull_requests_checks_platforms.png +.. image:: img/testing_pull_requests_checks_artifacts.webp -- Click the **Artifacts** dropdown on the right of the page then click the artifact's - name to download it: +- In the dropdown, click the artifact's name to download it. Remember to scroll + if you cannot see the name of the platform you're looking for: -.. image:: img/testing_pull_requests_checks_artifacts.png +.. image:: img/testing_pull_requests_checks_artifacts_list.webp - Extract the ZIP archive then run the executable. - Note that Windows and macOS binaries are not code signed. + Note that Windows and macOS binaries are **not** code signed. This means you may have to bypass a security warning before you can run the executable. - If you frequently test pull request builds, it may be better to disable - Windows SmartScreen or `disable macOS Gatekeeper `__ permanently. + On Windows, if you frequently test pull request builds, it may be better to disable + Windows SmartScreen permanently in the Windows security settings. + On macOS, see :ref:`doc_running_on_macos` for instructions on bypassing Gatekeeper. If you don't have a GitHub account ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ diff --git a/getting_started/first_2d_game/03.coding_the_player.rst b/getting_started/first_2d_game/03.coding_the_player.rst index 2df7e9c4116..95be85706a1 100644 --- a/getting_started/first_2d_game/03.coding_the_player.rst +++ b/getting_started/first_2d_game/03.coding_the_player.rst @@ -297,8 +297,7 @@ the ``_process`` function (make sure it's not indented under the `else`): .. code-tab:: gdscript GDScript position += velocity * delta - position.x = clamp(position.x, 0, screen_size.x) - position.y = clamp(position.y, 0, screen_size.y) + position = position.clamp(Vector2.ZERO, screen_size) .. code-tab:: csharp diff --git a/getting_started/first_2d_game/06.heads_up_display.rst b/getting_started/first_2d_game/06.heads_up_display.rst index 973afcc0fb8..a5a861f7b7b 100644 --- a/getting_started/first_2d_game/06.heads_up_display.rst +++ b/getting_started/first_2d_game/06.heads_up_display.rst @@ -40,7 +40,7 @@ Under "Theme Overrides > Fonts", choose "Load" and select the "Xolonium-Regular. .. image:: img/custom_font_load_font.webp -The font size is still to small, increase it to ``64`` under "Theme Overrides > Font Sizes". +The font size is still too small, increase it to ``64`` under "Theme Overrides > Font Sizes". Once you've done this with the ``ScoreLabel``, repeat the changes for the ``Message`` and ``StartButton`` nodes. .. image:: img/custom_font_size.webp diff --git a/getting_started/first_2d_game/img/player_scene_nodes.webp b/getting_started/first_2d_game/img/player_scene_nodes.webp index 3fab8edb2b6..0ac5e95cc6d 100644 Binary files a/getting_started/first_2d_game/img/player_scene_nodes.webp and b/getting_started/first_2d_game/img/player_scene_nodes.webp differ diff --git a/getting_started/introduction/godot_design_philosophy.rst b/getting_started/introduction/godot_design_philosophy.rst index d25eec55809..4a3160d307b 100644 --- a/getting_started/introduction/godot_design_philosophy.rst +++ b/getting_started/introduction/godot_design_philosophy.rst @@ -1,5 +1,3 @@ -:article_outdated: True - .. _doc_godot_design_philosophy: Godot's design philosophy diff --git a/getting_started/introduction/img/introduction_editor.png b/getting_started/introduction/img/introduction_editor.png deleted file mode 100644 index 8e0f8a2f722..00000000000 Binary files a/getting_started/introduction/img/introduction_editor.png and /dev/null differ diff --git a/getting_started/introduction/img/introduction_editor.webp b/getting_started/introduction/img/introduction_editor.webp new file mode 100644 index 00000000000..6fc10915e63 Binary files /dev/null and b/getting_started/introduction/img/introduction_editor.webp differ diff --git a/getting_started/introduction/img/key_concepts_character_nodes.png b/getting_started/introduction/img/key_concepts_character_nodes.png deleted file mode 100644 index 55abb9dd5ee..00000000000 Binary files a/getting_started/introduction/img/key_concepts_character_nodes.png and /dev/null differ diff --git a/getting_started/introduction/img/key_concepts_character_nodes.webp b/getting_started/introduction/img/key_concepts_character_nodes.webp new file mode 100644 index 00000000000..6f231f6ebe4 Binary files /dev/null and b/getting_started/introduction/img/key_concepts_character_nodes.webp differ diff --git a/getting_started/introduction/img/key_concepts_main_menu.png b/getting_started/introduction/img/key_concepts_main_menu.png deleted file mode 100644 index 354a881427e..00000000000 Binary files a/getting_started/introduction/img/key_concepts_main_menu.png and /dev/null differ diff --git a/getting_started/introduction/img/key_concepts_main_menu.webp b/getting_started/introduction/img/key_concepts_main_menu.webp new file mode 100644 index 00000000000..af5990e6837 Binary files /dev/null and b/getting_started/introduction/img/key_concepts_main_menu.webp differ diff --git a/getting_started/introduction/img/key_concepts_scene_example.png b/getting_started/introduction/img/key_concepts_scene_example.png deleted file mode 100644 index 9a37b30fe28..00000000000 Binary files a/getting_started/introduction/img/key_concepts_scene_example.png and /dev/null differ diff --git a/getting_started/introduction/img/key_concepts_scene_example.webp b/getting_started/introduction/img/key_concepts_scene_example.webp new file mode 100644 index 00000000000..d556b5e7c51 Binary files /dev/null and b/getting_started/introduction/img/key_concepts_scene_example.webp differ diff --git a/getting_started/introduction/img/manual_class_reference_inheritance.webp b/getting_started/introduction/img/manual_class_reference_inheritance.webp index 8ffb6d3060e..f5e42725b29 100644 Binary files a/getting_started/introduction/img/manual_class_reference_inheritance.webp and b/getting_started/introduction/img/manual_class_reference_inheritance.webp differ diff --git a/getting_started/introduction/img/manual_class_reference_search.png b/getting_started/introduction/img/manual_class_reference_search.png deleted file mode 100644 index 55bdc8ed526..00000000000 Binary files a/getting_started/introduction/img/manual_class_reference_search.png and /dev/null differ diff --git a/getting_started/introduction/img/manual_class_reference_search.webp b/getting_started/introduction/img/manual_class_reference_search.webp new file mode 100644 index 00000000000..43b5a1b8d9e Binary files /dev/null and b/getting_started/introduction/img/manual_class_reference_search.webp differ diff --git a/getting_started/introduction/index.rst b/getting_started/introduction/index.rst index 2bce432f50d..8c1412aeb1d 100644 --- a/getting_started/introduction/index.rst +++ b/getting_started/introduction/index.rst @@ -1,5 +1,3 @@ -:article_outdated: True - .. Intention: provide the necessary information to make the most of the getting started series, answering questions like "do I want to learn Godot?", "how does it look and feel?", "how does it work?", and "how do I best learn it?". diff --git a/getting_started/introduction/introduction_to_godot.rst b/getting_started/introduction/introduction_to_godot.rst index 2176cadb513..16fe4c1c31e 100644 --- a/getting_started/introduction/introduction_to_godot.rst +++ b/getting_started/introduction/introduction_to_godot.rst @@ -1,5 +1,3 @@ -:article_outdated: True - .. _doc_introduction_to_godot: Introduction to Godot @@ -55,7 +53,7 @@ Godot comes with a fully-fledged game editor with integrated tools to answer the most common needs. It includes a code editor, an animation editor, a tilemap editor, a shader editor, a debugger, a profiler, and more. -.. image:: img/introduction_editor.png +.. image:: img/introduction_editor.webp The team strives to offer a feature-rich game editor with a consistent user experience. While there is always room for improvement, the user interface keeps diff --git a/getting_started/introduction/key_concepts_overview.rst b/getting_started/introduction/key_concepts_overview.rst index c0caa387b5d..db6abe53a92 100644 --- a/getting_started/introduction/key_concepts_overview.rst +++ b/getting_started/introduction/key_concepts_overview.rst @@ -1,5 +1,3 @@ -:article_outdated: True - .. Intention: introduce only a handful of key concepts and avoid a big cognitive load. Readers will then be reminded of the concepts further in the getting started series, reinforcing their learning. @@ -26,12 +24,12 @@ a weapon, a menu in the user interface, a single house, an entire level, or anything you can think of. Godot's scenes are flexible; they fill the role of both prefabs and scenes in some other game engines. -.. image:: img/key_concepts_main_menu.png +.. image:: img/key_concepts_main_menu.webp You can also nest scenes. For example, you can put your character in a level, and drag and drop a scene as a child of it. -.. image:: img/key_concepts_scene_example.png +.. image:: img/key_concepts_scene_example.webp Nodes ----- @@ -40,7 +38,7 @@ A scene is composed of one or more **nodes**. Nodes are your game's smallest building blocks that you arrange into trees. Here's an example of a character's nodes. -.. image:: img/key_concepts_character_nodes.png +.. image:: img/key_concepts_character_nodes.webp It is made of a ``CharacterBody2D`` node named "Character", a ``Sprite2D``, a ``Camera2D``, and a ``CollisionShape2D``. diff --git a/getting_started/introduction/learning_new_features.rst b/getting_started/introduction/learning_new_features.rst index c75ad21f9a2..985b625679f 100644 --- a/getting_started/introduction/learning_new_features.rst +++ b/getting_started/introduction/learning_new_features.rst @@ -1,5 +1,3 @@ -:article_outdated: True - .. Keep this page short and sweet! We want users to read it to the end, so they know where to find information, how to get help, and how to maximize chances of getting answers. @@ -33,7 +31,7 @@ access it both online and offline. We recommend browsing the reference offline, from within the Godot editor. To do so, go to Help -> Search Help or press :kbd:`F1`. -.. image:: img/manual_class_reference_search.png +.. image:: img/manual_class_reference_search.webp To browse it online, head to the manual's :ref:`Class Reference ` section. diff --git a/getting_started/step_by_step/scripting_first_script.rst b/getting_started/step_by_step/scripting_first_script.rst index 701bb7b193f..14ac3ce538a 100644 --- a/getting_started/step_by_step/scripting_first_script.rst +++ b/getting_started/step_by_step/scripting_first_script.rst @@ -260,7 +260,7 @@ Moving forward ~~~~~~~~~~~~~~ Let's now make the node move. Add the following two lines inside of the ``_process()`` -function, ensuring the new lines are indented the same way as the ``rotation += angular * delta`` line before +function, ensuring the new lines are indented the same way as the ``rotation += angular_speed * delta`` line before them. .. tabs:: diff --git a/getting_started/step_by_step/scripting_languages.rst b/getting_started/step_by_step/scripting_languages.rst index b3f78359abb..4dad51f8219 100644 --- a/getting_started/step_by_step/scripting_languages.rst +++ b/getting_started/step_by_step/scripting_languages.rst @@ -103,7 +103,7 @@ languages, including Squirrel, Lua, and Python. As Microsoft's `C# `_ is a favorite amongst game developers, we officially support it. C# is a mature and flexible -language with tons of libraries written for it. We could add support for it +language with tons of libraries written for it. We were able to add support for it thanks to a generous donation from Microsoft. .. image:: img/scripting_csharp.png @@ -126,6 +126,12 @@ officially supported .NET option. in GDScript, C#, or C++ won't have a significant impact on performance. +.. attention:: + + Projects written in C# using Godot 4.x currently cannot be exported to + Android, iOS and web platforms. To use C# on those platforms, use Godot 3 + instead. + C++ via GDExtension ~~~~~~~~~~~~~~~~~~~ diff --git a/index.rst b/index.rst index d861e51d973..15edb430336 100644 --- a/index.rst +++ b/index.rst @@ -1,4 +1,4 @@ -Godot Docs – *master* branch +Godot Docs – *4.1* branch ============================ .. only:: not i18n diff --git a/tutorials/2d/2d_transforms.rst b/tutorials/2d/2d_transforms.rst index 1d146459bbc..be67b618bdb 100644 --- a/tutorials/2d/2d_transforms.rst +++ b/tutorials/2d/2d_transforms.rst @@ -1,5 +1,3 @@ -:article_outdated: True - .. _doc_viewport_and_canvas_transforms: Viewport and canvas transforms @@ -12,6 +10,12 @@ This is an overview of the 2D transforms going on for nodes from the moment they draw their content locally to the time they are drawn onto the screen. This overview discusses very low level details of the engine. +The goal of this tutorial is to teach a way for feeding input events to the +Input with a position in the correct coordinate system. + +A more extensive description of all coordinate systems and 2d transforms is +available in :ref:`doc_2d_coordinate_systems`. + Canvas transform ---------------- @@ -30,9 +34,8 @@ Global canvas transform Viewports also have a Global Canvas transform (also a :ref:`Transform2D `). This is the master transform and -affects all individual *Canvas Layer* transforms. Generally, this -transform is not of much use, but is used in the CanvasItem Editor -in Godot's editor. +affects all individual *Canvas Layer* transforms. Generally, this is primarily +used in Godot's CanvasItem Editor. Stretch transform ----------------- @@ -47,68 +50,82 @@ convert InputEvent coordinates to local CanvasItem coordinates, the :ref:`CanvasItem.make_input_local() ` function was added for convenience. +Window transform +---------------- + +The root viewport is a :ref:`Window `. In order to scale and +position the *Window's* content as described in :ref:`doc_multiple_resolutions`, +each :ref:`Window ` contains a *window transform*. It is for +example responsible for the black bars at the *Window's* sides so that the +*Viewport* is displayed with a fixed aspect ratio. + Transform order --------------- -For a coordinate in CanvasItem local properties to become an actual -screen coordinate, the following chain of transforms must be applied: +To convert a CanvasItem local coordinate to an actual screen coordinate, +the following chain of transforms must be applied: -.. image:: img/viewport_transforms2.png +.. image:: img/viewport_transforms3.webp Transform functions ------------------- -Obtaining each transform can be achieved with the following functions: +The above graphic shows some available transform functions. All transforms are directed from right +to left, this means multiplying a transform with a coordinate results in a coordinate system +further to the left, multiplying the :ref:`affine inverse ` +of a transform results in a coordinate system further to the right: + +.. tabs:: + .. code-tab:: gdscript GDScript + + # Called from a CanvasItem. + canvas_pos = get_global_transform() * local_pos + local_pos = get_global_transform().affine_inverse() * canvas_pos + + .. code-tab:: csharp -+----------------------------------+---------------------------------------------------------------------------------------------+ -| Type | Transform | -+==================================+=============================================================================================+ -| CanvasItem | :ref:`CanvasItem.get_global_transform() ` | -+----------------------------------+---------------------------------------------------------------------------------------------+ -| CanvasLayer | :ref:`CanvasItem.get_canvas_transform() ` | -+----------------------------------+---------------------------------------------------------------------------------------------+ -| CanvasLayer+GlobalCanvas+Stretch | :ref:`CanvasItem.get_viewport_transform() ` | -+----------------------------------+---------------------------------------------------------------------------------------------+ + // Called from a CanvasItem. + canvasPos = GetGlobalTransform() * localPos; + localPos = GetGlobalTransform().AffineInverse() * canvasPos; -Finally, then, to convert a CanvasItem local coordinates to screen -coordinates, just multiply in the following order: +Finally, then, to convert a CanvasItem local coordinates to screen coordinates, just multiply in +the following order: .. tabs:: .. code-tab:: gdscript GDScript - var screen_coord = get_viewport_transform() * (get_global_transform() * local_pos) + var screen_coord = get_viewport().get_screen_transform() * get_global_transform_with_canvas() * local_pos .. code-tab:: csharp - var screenCord = GetViewportTransform() * (GetGlobalTransform() * localPos); + var screenCord = GetViewport().GetScreenTransform() * GetGlobalTransformWithCanvas() * localPos; -Keep in mind, however, that it is generally not desired to work with -screen coordinates. The recommended approach is to simply work in Canvas -coordinates (``CanvasItem.get_global_transform()``), to allow automatic -screen resolution resizing to work properly. +Keep in mind, however, that it is generally not desired to work with screen coordinates. The +recommended approach is to simply work in Canvas coordinates +(``CanvasItem.get_global_transform()``), to allow automatic screen resolution resizing to work +properly. Feeding custom input events --------------------------- -It is often desired to feed custom input events to the scene tree. With -the above knowledge, to correctly do this, it must be done the following -way: +It is often desired to feed custom input events to the game. With the above knowledge, to correctly +do this in the focused window, it must be done the following way: .. tabs:: .. code-tab:: gdscript GDScript - var local_pos = Vector2(10, 20) # local to Control/Node2D + var local_pos = Vector2(10, 20) # Local to Control/Node2D. var ie = InputEventMouseButton.new() ie.button_index = MOUSE_BUTTON_LEFT - ie.position = get_viewport_transform() * (get_global_transform() * local_pos) - get_tree().input_event(ie) + ie.position = get_viewport().get_screen_transform() * get_global_transform_with_canvas() * local_pos + Input.parse_input_event(ie) .. code-tab:: csharp - var localPos = new Vector2(10,20); // local to Control/Node2D + var localPos = new Vector2(10,20); // Local to Control/Node2D. var ie = new InputEventMouseButton() { ButtonIndex = MouseButton.Left, - Position = GetViewportTransform() * (GetGlobalTransform() * localPos), + Position = GetViewport().GetScreenTransform() * GetGlobalTransformWithCanvas() * localPos, }; - GetTree().InputEvent(ie); + Input.ParseInputEvent(ie); diff --git a/tutorials/2d/custom_drawing_in_2d.rst b/tutorials/2d/custom_drawing_in_2d.rst index ca073d18506..c13817dedf9 100644 --- a/tutorials/2d/custom_drawing_in_2d.rst +++ b/tutorials/2d/custom_drawing_in_2d.rst @@ -69,7 +69,8 @@ redrawn if modified: extends Node2D - export (Texture) var texture setget _set_texture + @export var texture: Texture: + set = _set_texture func _set_texture(value): # If the texture variable is modified externally, diff --git a/tutorials/2d/img/viewport_transforms2.png b/tutorials/2d/img/viewport_transforms2.png deleted file mode 100644 index 06e19e72bdf..00000000000 Binary files a/tutorials/2d/img/viewport_transforms2.png and /dev/null differ diff --git a/tutorials/2d/img/viewport_transforms3.webp b/tutorials/2d/img/viewport_transforms3.webp new file mode 100644 index 00000000000..c06993f88a5 Binary files /dev/null and b/tutorials/2d/img/viewport_transforms3.webp differ diff --git a/tutorials/2d/using_tilemaps.rst b/tutorials/2d/using_tilemaps.rst index b61b13e0064..d1efefbdd3c 100644 --- a/tutorials/2d/using_tilemaps.rst +++ b/tutorials/2d/using_tilemaps.rst @@ -1,5 +1,3 @@ -:article_outdated: True - .. _doc_using_tilemaps: Using TileMaps diff --git a/tutorials/2d/using_tilesets.rst b/tutorials/2d/using_tilesets.rst index fb7b7049f9e..e5fee81b8ed 100644 --- a/tutorials/2d/using_tilesets.rst +++ b/tutorials/2d/using_tilesets.rst @@ -510,7 +510,7 @@ to empty space. For example, if a tile has all its bits set to ``0`` or greater, it will only appear if *all* 8 neighboring tiles are using a tile with the same terrain ID. -is present on corners or sides. If a tile has its bits set to ``0`` or greater, +If a tile has its bits set to ``0`` or greater, but the top-left, top and top-right bits are set to ``-1``, it will only appear if there is empty space on top of it (including diagonally). diff --git a/tutorials/3d/particles/index.rst b/tutorials/3d/particles/index.rst index 02de2170ac6..5365c02d2a1 100644 --- a/tutorials/3d/particles/index.rst +++ b/tutorials/3d/particles/index.rst @@ -23,7 +23,7 @@ Every particle system you create in Godot consists of two main parts: particles Particles ~~~~~~~~~ -A partice is the visible part of a particle system. It's what you see on the screen when a particle +A particle is the visible part of a particle system. It's what you see on the screen when a particle system is active: The tiny specks of dust, the flames of a fire, the glowing orbs of a magical effect. You can have anywhere between a couple hundred and tens of thousands of particles in a single system. You can randomize a particle's size, its speed and movement direction, and change its diff --git a/tutorials/animation/2d_skeletons.rst b/tutorials/animation/2d_skeletons.rst index 470e0669088..f4debf8d877 100644 --- a/tutorials/animation/2d_skeletons.rst +++ b/tutorials/animation/2d_skeletons.rst @@ -1,3 +1,5 @@ +:article_outdated: True + .. _doc_2d_skeletons: 2D skeletons diff --git a/tutorials/animation/animation_track_types.rst b/tutorials/animation/animation_track_types.rst index bc71f777118..80fad1b29fb 100644 --- a/tutorials/animation/animation_track_types.rst +++ b/tutorials/animation/animation_track_types.rst @@ -1,5 +1,3 @@ -:article_outdated: True - .. _doc_animation_track_types: Animation Track types diff --git a/tutorials/animation/playing_videos.rst b/tutorials/animation/playing_videos.rst index 4f5879972e4..5122f9ca9f6 100644 --- a/tutorials/animation/playing_videos.rst +++ b/tutorials/animation/playing_videos.rst @@ -76,7 +76,7 @@ a float. Otherwise, the division's result will always be an integer. Once you've configured the AspectRatioContainer, reparent your VideoStreamPlayer node to be a child of the AspectRatioContainer node. Make sure **Expand** is -disabled on the VideoStreamPlayer. Your video should now scale automatically +enabled on the VideoStreamPlayer. Your video should now scale automatically to fit the whole screen while avoiding distortion. .. seealso:: diff --git a/tutorials/assets_pipeline/importing_images.rst b/tutorials/assets_pipeline/importing_images.rst index 33b629a938a..02a0578aa22 100644 --- a/tutorials/assets_pipeline/importing_images.rst +++ b/tutorials/assets_pipeline/importing_images.rst @@ -24,7 +24,8 @@ Godot can import the following image formats: - Truevision Targa (``.tga``) - SVG (``.svg``, ``.svgz``) - SVGs are rasterized using `ThorVG `__ - when importing them. Support is limited; complex vectors may not render correctly. + when importing them. `Support is limited `__; + complex vectors may not render correctly. You can check whether ThorVG can render a certain vector correctly using its `web-based viewer `__. For complex vectors, rendering them to PNGs using `Inkscape `__ diff --git a/tutorials/assets_pipeline/importing_scenes.rst b/tutorials/assets_pipeline/importing_scenes.rst index d07db08e560..bc9412ca135 100644 --- a/tutorials/assets_pipeline/importing_scenes.rst +++ b/tutorials/assets_pipeline/importing_scenes.rst @@ -107,7 +107,9 @@ Importing ``.blend`` files directly within Godot .. note:: - This functionality requires Blender 3.0 or later. + This functionality requires Blender 3.0 or later. For best results, we + recommend using Blender 3.5 or later, as it includes many fixes to the glTF + exporter. From Godot 4.0 onwards, the editor can directly import ``.blend`` files by calling `Blender `__'s glTF export functionality in a @@ -122,8 +124,8 @@ To use ``.blend`` import, you must install Blender before opening the Godot editor (if opening a project that already contains ``.blend`` files). If you keep Blender installed at its default location, Godot should be able to detect its path automatically. If this isn't the case, configure the path to the -Blender executable in the Editor Settings (**Filesystem > Import > Blender > -Blender 3 Path**). +directory containing the Blender executable in the Editor Settings +(**Filesystem > Import > Blender > Blender 3 Path**). If you keep ``.blend`` files within your project folder but don't want them to be imported by Godot, disable **Filesystem > Import > Blender > Enabled** in the @@ -230,6 +232,18 @@ object transform in the 3D modeling software before exporting the scene. that the skeleton is reset to its T-pose or default rest pose before exporting with your favorite 3D editor. +Lighting considerations +----------------------- + +While it's possible to import lights from a 3D scene using the glTF, ``.blend`` +or Collada formats, it's generally advised to design the scene's lighting in the +Godot editor after importing the scene. + +This allows you to get a more accurate feel for the final result, as different +engines will render lights in a different manner. This also avoids any issues +with lights appearing excessively strong or faint as a result of the import +process. + Import workflows ---------------- diff --git a/tutorials/best_practices/autoloads_versus_internal_nodes.rst b/tutorials/best_practices/autoloads_versus_internal_nodes.rst index 18471ed9f46..48664a26a59 100644 --- a/tutorials/best_practices/autoloads_versus_internal_nodes.rst +++ b/tutorials/best_practices/autoloads_versus_internal_nodes.rst @@ -1,5 +1,3 @@ -:article_outdated: True - .. _doc_autoloads_versus_internal_nodes: Autoloads versus regular nodes @@ -7,7 +5,7 @@ Autoloads versus regular nodes Godot offers a feature to automatically load nodes at the root of your project, allowing you to access them globally, that can fulfill the role of a Singleton: -:ref:`doc_singletons_autoload`. These auto-loaded nodes are not freed when you +:ref:`doc_singletons_autoload`. These autoloaded nodes are not freed when you change the scene from code with :ref:`SceneTree.change_scene_to_file `. In this guide, you will learn when to use the Autoload feature, and techniques @@ -25,7 +23,7 @@ that play a sound effect. There's a node for that: the :ref:`AudioStreamPlayer `. But if we call the ``AudioStreamPlayer`` while it is already playing a sound, the new sound interrupts the first. -A solution is to code a global, auto-loaded sound manager class. It generates a +A solution is to code a global, autoloaded sound manager class. It generates a pool of ``AudioStreamPlayer`` nodes that cycle through as each new request for sound effects comes in. Say we call that class ``Sound``, you can use it from anywhere in your project by calling ``Sound.play("coin_pickup.ogg")``. This @@ -44,7 +42,7 @@ solves the problem in the short term but causes more problems: .. note:: - About global access, the problem is that Any code anywhere could pass wrong + About global access, the problem is that any code anywhere could pass wrong data to the ``Sound`` autoload in our example. As a result, the domain to explore to fix the bug spans the entire project. @@ -82,30 +80,28 @@ When it comes to data, you can either: When you should use an Autoload ------------------------------- -Auto-loaded nodes can simplify your code in some cases: - -- **Static Data**: if you need data that is exclusive to one class, like a - database, then an autoload can be a good tool. There is no scripting API in - Godot to create and manage static data otherwise. - -- **Static functions**: creating a library of functions that only return values. +GDScript supports the creation of ``static`` functions using ``static func``. +When combined with ``class_name``, this makes it possible to create libraries of +helper functions without having to create an instance to call them. The +limitation of static functions is that they can't reference member variables, +non-static functions or ``self``. -- **Systems with a wide scope**: If the singleton is managing its own - information and not invading the data of other objects, then it's a great way to - create systems that handle broad-scoped tasks. For example, a quest or a - dialogue system. +Since Godot 4.1, GDScript also supports ``static`` variables using ``static var``. +This means you can now share a variables across instances of a class without +having to create a separate autoload. -Until Godot 3.1, another use was just for convenience: autoloads have a global -variable for their name generated in GDScript, allowing you to call them from -any script file in your project. But now, you can use the ``class_name`` keyword -instead to get auto-completion for a type in your entire project. +Still, autoloaded nodes can simplify your code for systems with a wide scope. If +the autoload is managing its own information and not invading the data of other +objects, then it's a great way to create systems that handle broad-scoped tasks. +For example, a quest or a dialogue system. .. note:: - Autoload is not exactly a Singleton. Nothing prevents you from instantiating - copies of an auto-loaded node. It is only a tool that makes a node load - automatically as a child of the root of your scene tree, regardless of your - game's node structure or which scene you run, e.g. by pressing :kbd:`F6` key. + An autoload is *not* necessarily a singleton. Nothing prevents you from + instantiating copies of an autoloaded node. An autoload is only a tool that + makes a node load automatically as a child of the root of your scene tree, + regardless of your game's node structure or which scene you run, e.g. by + pressing the :kbd:`F6` key. - As a result, you can get the auto-loaded node, for example an autoload called + As a result, you can get the autoloaded node, for example an autoload called ``Sound``, by calling ``get_node("/root/Sound")``. diff --git a/tutorials/best_practices/data_preferences.rst b/tutorials/best_practices/data_preferences.rst index 4d3a1d16ac1..1fd202720fe 100644 --- a/tutorials/best_practices/data_preferences.rst +++ b/tutorials/best_practices/data_preferences.rst @@ -10,33 +10,33 @@ Y or Z? This article covers a variety of topics related to these dilemmas. .. note:: - This article makes references to "[something]-time" operations. This - terminology comes from algorithm analysis' - `Big O Notation `_. - - Long-story short, it describes the worst-case scenario of runtime length. - In laymen's terms: - - "As the size of a problem domain increases, the runtime length of the - algorithm..." - - - Constant-time, ``O(1)``: "...does not increase." - - Logarithmic-time, ``O(log n)``: "...increases at a slow rate." - - Linear-time, ``O(n)``: "...increases at the same rate." - - Etc. - - Imagine if one had to process 3 million data points within a single frame. It - would be impossible to craft the feature with a linear-time algorithm since - the sheer size of the data would increase the runtime far beyond the time allotted. - In comparison, using a constant-time algorithm could handle the operation without - issue. - - By and large, developers want to avoid engaging in linear-time operations as - much as possible. But, if one keeps the scale of a linear-time operation - small, and if one does not need to perform the operation often, then it may - be acceptable. Balancing these requirements and choosing the right - algorithm / data structure for the job is part of what makes programmers' - skills valuable. + This article makes references to "[something]-time" operations. This + terminology comes from algorithm analysis' + `Big O Notation `_. + + Long-story short, it describes the worst-case scenario of runtime length. + In laymen's terms: + + "As the size of a problem domain increases, the runtime length of the + algorithm..." + + - Constant-time, ``O(1)``: "...does not increase." + - Logarithmic-time, ``O(log n)``: "...increases at a slow rate." + - Linear-time, ``O(n)``: "...increases at the same rate." + - Etc. + + Imagine if one had to process 3 million data points within a single frame. It + would be impossible to craft the feature with a linear-time algorithm since + the sheer size of the data would increase the runtime far beyond the time allotted. + In comparison, using a constant-time algorithm could handle the operation without + issue. + + By and large, developers want to avoid engaging in linear-time operations as + much as possible. But, if one keeps the scale of a linear-time operation + small, and if one does not need to perform the operation often, then it may + be acceptable. Balancing these requirements and choosing the right + algorithm / data structure for the job is part of what makes programmers' + skills valuable. Array vs. Dictionary vs. Object ------------------------------- @@ -52,12 +52,13 @@ contents in a contiguous section of memory, i.e. they are in a row adjacent to each other. .. note:: - For those unfamiliar with C++, a Vector is the name of the - array object in traditional C++ libraries. It is a "templated" - type, meaning that its records can only contain a particular type (denoted - by angled brackets). So, for example, a - :ref:`PackedStringArray ` would be something like - a ``Vector``. + + For those unfamiliar with C++, a Vector is the name of the + array object in traditional C++ libraries. It is a "templated" + type, meaning that its records can only contain a particular type (denoted + by angled brackets). So, for example, a + :ref:`PackedStringArray ` would be something like + a ``Vector``. Contiguous memory stores imply the following operation performance: @@ -294,7 +295,7 @@ faster than string comparisons (linear-time). If one wants to keep up other languages' conventions though, then one should use integers. The primary issue with using integers comes up when one wants to *print* -an enum value. As integers, attempting to print MY_ENUM will print +an enum value. As integers, attempting to print ``MY_ENUM`` will print ``5`` or what-have-you, rather than something like ``"MyEnum"``. To print an integer enum, one would have to write a Dictionary that maps the corresponding string value for each enum. @@ -314,7 +315,7 @@ The answer may not be immediately clear to new Godot users. the engine draws as an animated loop rather than a static image. Users can manipulate... -1. the rate at which it moves across each section of the texture (fps). +1. the rate at which it moves across each section of the texture (FPS). 2. the number of regions contained within the texture (frames). @@ -346,7 +347,7 @@ the AnimatedSprite2D. AnimationPlayers are also the tool one will need to use if they wish to design more complex 2D animation systems, such as... -1. **Cut-Out animations:** editing sprites' transforms at runtime. +1. **Cut-out animations:** editing sprites' transforms at runtime. 2. **2D Mesh animations:** defining a region for the sprite's texture and rigging a skeleton to it. Then one animates the bones which diff --git a/tutorials/best_practices/godot_interfaces.rst b/tutorials/best_practices/godot_interfaces.rst index 1540d2dd301..c2a7e07821a 100644 --- a/tutorials/best_practices/godot_interfaces.rst +++ b/tutorials/best_practices/godot_interfaces.rst @@ -1,5 +1,3 @@ -:article_outdated: True - .. _doc_godot_interfaces: Godot interfaces @@ -41,32 +39,36 @@ access. .. tabs:: .. code-tab:: gdscript GDScript - var preres = preload(path) # Load resource during scene load - var res = load(path) # Load resource when program reaches statement + # If you need an "export const var" (which doesn't exist), use a conditional + # setter for a tool script that checks if it's executing in the editor. + # The `@tool` annotation must be placed at the top of the script. + @tool + + # Load resource during scene load. + var preres = preload(path) + # Load resource when program reaches statement. + var res = load(path) # Note that users load scenes and scripts, by convention, with PascalCase # names (like typenames), often into constants. - const MyScene : = preload("my_scene.tscn") as PackedScene # Static load - const MyScript : = preload("my_script.gd") as Script + const MyScene = preload("my_scene.tscn") # Static load + const MyScript = preload("my_script.gd") # This type's value varies, i.e. it is a variable, so it uses snake_case. - export(Script) var script_type: Script - - # If need an "export const var" (which doesn't exist), use a conditional - # setter for a tool script that checks if it's executing in the editor. - tool # Must place at top of file. + @export var script_type: Script # Must configure from the editor, defaults to null. - export(Script) var const_script setget set_const_script - func set_const_script(value): - if Engine.is_editor_hint(): - const_script = value + export var const_script: Script: + set(value): + if Engine.is_editor_hint(): + const_script = value # Warn users if the value hasn't been set. - func _get_configuration_warning(): + func _get_configuration_warnings(): if not const_script: - return "Must initialize property 'const_script'." - return "" + return ["Must initialize property 'const_script'."] + + return [] .. code-tab:: csharp @@ -106,7 +108,7 @@ access. }; // Warn users if the value hasn't been set. - public String _GetConfigurationWarning() + public String _GetConfigurationWarnings() { if (EnemyScn == null) return "Must initialize property 'EnemyScn'."; @@ -142,7 +144,7 @@ Nodes likewise have an alternative access point: the SceneTree. print($Child) # Fastest. Doesn't break if node moves later. - # Note that `@onready` annotation is GDScript only. + # Note that `@onready` annotation is GDScript-only. # Other languages must do... # var child # func _ready(): @@ -151,6 +153,12 @@ Nodes likewise have an alternative access point: the SceneTree. func lookup_and_cache_for_future_access(): print(child) + # Fastest. Doesn't break if node is moved in the Scene tree dock. + # Node must be selected in the inspector as it's an exported property. + @export var child: Node + func lookup_and_cache_for_future_access(): + print(child) + # Delegate reference assignment to an external source. # Con: need to perform a validation check. # Pro: node makes no requirements of its external structure. @@ -169,8 +177,7 @@ Nodes likewise have an alternative access point: the SceneTree. return # Fail and terminate. - # Note: Scripts run from a release export template don't - # run `assert` statements. + # NOTE: Scripts run from a release export template don't run `assert`s. assert(prop, "'prop' wasn't initialized") # Use an autoload. @@ -236,8 +243,7 @@ Nodes likewise have an alternative access point: the SceneTree. } // Fail and terminate. - // Note: Scripts run from a release export template don't - // run `Debug.Assert` statements. + // Note: Scripts run from a release export template don't run `Debug.Assert`s. Debug.Assert(Prop, "'Prop' wasn't initialized"); } @@ -287,10 +293,8 @@ following checks, in order: execute logic that gives the impression that the Object has a property. This is also the case with the ``_get_property_list`` method. - - Note that this happens even for non-legal symbol names such as in the - case of :ref:`TileSet `'s "1/tile_name" property. This - refers to the name of the tile with ID 1, i.e. - ``TileSet.tile_get_name(1)``. + - Note that this happens even for non-legal symbol names, such as names + starting with a digit or containing a slash. As a result, this duck-typed system can locate a property either in the script, the object's class, or any class that object inherits, but only for things diff --git a/tutorials/best_practices/godot_notifications.rst b/tutorials/best_practices/godot_notifications.rst index ce8984e895e..5e1bdc16238 100644 --- a/tutorials/best_practices/godot_notifications.rst +++ b/tutorials/best_practices/godot_notifications.rst @@ -1,5 +1,3 @@ -:article_outdated: True - .. _doc_godot_notifications: Godot notifications @@ -15,17 +13,17 @@ relate to it. For example, if the engine tells a Some of these notifications, like draw, are useful to override in scripts. So much so that Godot exposes many of them with dedicated functions: -- ``_ready()`` : NOTIFICATION_READY +- ``_ready()``: ``NOTIFICATION_READY`` -- ``_enter_tree()`` : NOTIFICATION_ENTER_TREE +- ``_enter_tree()``: ``NOTIFICATION_ENTER_TREE`` -- ``_exit_tree()`` : NOTIFICATION_EXIT_TREE +- ``_exit_tree()``: ``NOTIFICATION_EXIT_TREE`` -- ``_process(delta)`` : NOTIFICATION_PROCESS +- ``_process(delta)``: ``NOTIFICATION_PROCESS`` -- ``_physics_process(delta)`` : NOTIFICATION_PHYSICS_PROCESS +- ``_physics_process(delta)``: ``NOTIFICATION_PHYSICS_PROCESS`` -- ``_draw()`` : NOTIFICATION_DRAW +- ``_draw()``: ``NOTIFICATION_DRAW`` What users might *not* realize is that notifications exist for types other than Node alone, for example: @@ -35,7 +33,7 @@ than Node alone, for example: - :ref:`Object::NOTIFICATION_PREDELETE `: a callback that triggers before the engine deletes an Object, i.e. a - 'destructor'. + "destructor". And many of the callbacks that *do* exist in Nodes don't have any dedicated methods, but are still quite useful. @@ -48,7 +46,7 @@ methods, but are still quite useful. node. One can access all these custom notifications from the universal -``_notification`` method. +``_notification()`` method. .. note:: Methods in the documentation labeled as "virtual" are also intended to be @@ -65,38 +63,41 @@ virtual functions? _process vs. _physics_process vs. \*_input ------------------------------------------ -Use ``_process`` when one needs a framerate-dependent deltatime between +Use ``_process()`` when one needs a framerate-dependent delta time between frames. If code that updates object data needs to update as often as possible, this is the right place. Recurring logic checks and data caching often execute here, but it comes down to the frequency at which one needs the evaluations to update. If they don't need to execute every frame, then -implementing a Timer-yield-timeout loop is another option. +implementing a Timer-timeout loop is another option. .. tabs:: .. code-tab:: gdscript GDScript - # Infinitely loop, but only execute whenever the Timer fires. # Allows for recurring operations that don't trigger script logic # every frame (or even every fixed frame). - while true: - my_method() - $Timer.start() - yield($Timer, "timeout") - -Use ``_physics_process`` when one needs a framerate-independent deltatime + func _ready(): + var timer = Timer.new() + timer.autostart = true + timer.wait_time = 0.5 + add_child(timer) + timer.timeout.connect(func(): + print("This block runs every 0.5 seconds") + ) + +Use ``_physics_process()`` when one needs a framerate-independent delta time between frames. If code needs consistent updates over time, regardless of how fast or slow time advances, this is the right place. Recurring kinematic and object transform operations should execute here. While it is possible, to achieve the best performance, one should avoid -making input checks during these callbacks. ``_process`` and -``_physics_process`` will trigger at every opportunity (they do not "rest" by -default). In contrast, ``*_input`` callbacks will trigger only on frames in +making input checks during these callbacks. ``_process()`` and +``_physics_process()`` will trigger at every opportunity (they do not "rest" by +default). In contrast, ``*_input()`` callbacks will trigger only on frames in which the engine has actually detected the input. One can check for input actions within the input callbacks just the same. If one wants to use delta time, one can fetch it from the related -deltatime methods as needed. +delta time methods as needed. .. tabs:: .. code-tab:: gdscript GDScript @@ -146,8 +147,8 @@ _init vs. initialization vs. export If the script initializes its own node subtree, without a scene, that code should execute here. Other property or SceneTree-independent -initializations should also run here. This triggers before ``_ready`` or -``_enter_tree``, but after a script creates and initializes its properties. +initializations should also run here. This triggers before ``_ready()`` or +``_enter_tree()``, but after a script creates and initializes its properties. Scripts have three types of property assignments that can occur during instantiation: @@ -216,16 +217,16 @@ _ready vs. _enter_tree vs. NOTIFICATION_PARENTED ------------------------------------------------ When instantiating a scene connected to the first executed scene, Godot will -instantiate nodes down the tree (making ``_init`` calls) and build the tree -going downwards from the root. This causes ``_enter_tree`` calls to cascade +instantiate nodes down the tree (making ``_init()`` calls) and build the tree +going downwards from the root. This causes ``_enter_tree()`` calls to cascade down the tree. Once the tree is complete, leaf nodes call ``_ready``. A node will call this method once all child nodes have finished calling theirs. This then causes a reverse cascade going up back to the tree's root. When instantiating a script or a standalone scene, nodes are not -added to the SceneTree upon creation, so no ``_enter_tree`` callbacks -trigger. Instead, only the ``_init`` call occurs. When the scene is added -to the SceneTree, the ``_enter_tree`` and ``_ready`` calls occur. +added to the SceneTree upon creation, so no ``_enter_tree()`` callbacks +trigger. Instead, only the ``_init()`` call occurs. When the scene is added +to the SceneTree, the ``_enter_tree()`` and ``_ready()`` calls occur. If one needs to trigger behavior that occurs as nodes parent to another, regardless of whether it occurs as part of the main/active scene or not, one diff --git a/tutorials/best_practices/img/version_control_menu.png b/tutorials/best_practices/img/version_control_menu.png deleted file mode 100644 index b859bd3ed94..00000000000 Binary files a/tutorials/best_practices/img/version_control_menu.png and /dev/null differ diff --git a/tutorials/best_practices/img/version_control_systems_generate_metadata.webp b/tutorials/best_practices/img/version_control_systems_generate_metadata.webp new file mode 100644 index 00000000000..0e236d25530 Binary files /dev/null and b/tutorials/best_practices/img/version_control_systems_generate_metadata.webp differ diff --git a/tutorials/best_practices/index.rst b/tutorials/best_practices/index.rst index 8374571a99c..2f504015624 100644 --- a/tutorials/best_practices/index.rst +++ b/tutorials/best_practices/index.rst @@ -1,5 +1,3 @@ -:article_outdated: True - Best practices ============== diff --git a/tutorials/best_practices/introduction_best_practices.rst b/tutorials/best_practices/introduction_best_practices.rst index ec7f37777d7..349ec01c0cc 100644 --- a/tutorials/best_practices/introduction_best_practices.rst +++ b/tutorials/best_practices/introduction_best_practices.rst @@ -1,5 +1,3 @@ -:article_outdated: True - .. _doc_introduction_best_practices: Introduction diff --git a/tutorials/best_practices/logic_preferences.rst b/tutorials/best_practices/logic_preferences.rst index 0b98a5caf08..b7fa03c91e2 100644 --- a/tutorials/best_practices/logic_preferences.rst +++ b/tutorials/best_practices/logic_preferences.rst @@ -1,5 +1,3 @@ -:article_outdated: True - .. _doc_logic_preferences: Logic preferences @@ -35,7 +33,7 @@ resources while in the middle of performance-sensitive code. Its counterpart, the :ref:`load ` method, loads a resource only when it reaches the load statement. That is, it will load a resource in-place which can cause slowdowns when it occurs in the middle of -sensitive processes. The ``load`` function is also an alias for +sensitive processes. The ``load()`` function is also an alias for :ref:`ResourceLoader.load(path) ` which is accessible to *all* scripting languages. @@ -121,7 +119,7 @@ consider: in exceptional cases, one may wish not to do this: 1. If the 'imported' class is liable to change, then it should be a property - instead, initialized either using an ``export`` or a ``load`` (and + instead, initialized either using an ``export`` or a ``load()`` (and perhaps not even initialized until later). 2. If the script requires a great many dependencies, and one does not wish diff --git a/tutorials/best_practices/node_alternatives.rst b/tutorials/best_practices/node_alternatives.rst index 94a47e53ca1..6c2d831d7fa 100644 --- a/tutorials/best_practices/node_alternatives.rst +++ b/tutorials/best_practices/node_alternatives.rst @@ -1,11 +1,8 @@ -:article_outdated: True - .. _doc_node_alternatives: When and how to avoid using nodes for everything ================================================ - Nodes are cheap to produce, but even they have their limits. A project may have tens of thousands of nodes all doing things. The more complex their behavior though, the larger the strain each one adds to a project's @@ -30,10 +27,12 @@ your project's features. entire Node library, one creates an abbreviated set of Objects from which a node can generate and manage the appropriate sub-nodes. - .. note:: One should be careful when handling them. One can store an Object - into a variable, but these references can become invalid without warning. - For example, if the object's creator decides to delete it out of nowhere, - this would trigger an error state when one next accesses it. + .. note:: + + One should be careful when handling them. One can store an Object + into a variable, but these references can become invalid without warning. + For example, if the object's creator decides to delete it out of nowhere, + this would trigger an error state when one next accesses it. 2. :ref:`RefCounted `: Only a little more complex than Object. They track references to themselves, only deleting loaded memory when no diff --git a/tutorials/best_practices/scene_organization.rst b/tutorials/best_practices/scene_organization.rst index 5cf5d367dc8..e7c385280cc 100644 --- a/tutorials/best_practices/scene_organization.rst +++ b/tutorials/best_practices/scene_organization.rst @@ -1,5 +1,3 @@ -:article_outdated: True - .. _doc_scene_organization: Scene organization @@ -52,7 +50,7 @@ To do this, one must expose data and then rely on a parent context to initialize it: 1. Connect to a signal. Extremely safe, but should be used only to "respond" to - behavior, not start it. Note that signal names are usually past-tense verbs + behavior, not start it. By convention, signal names are usually past-tense verbs like "entered", "skill_activated", or "item_collected". .. tabs:: @@ -106,10 +104,10 @@ initialize it: .. code-tab:: csharp // Parent - GetNode("Child").Set("FuncProperty", GD.FuncRef(ObjectWithMethod, "MethodOnTheObject")); + GetNode("Child").Set("FuncProperty", Callable.From(ObjectWithMethod.MethodOnTheObject)); // Child - FuncProperty.CallFunc(); // Call parent-defined method (can come from anywhere). + FuncProperty.Call(); // Call parent-defined method (can come from anywhere). 4. Initialize a Node or other Object reference. @@ -219,9 +217,9 @@ in another context without any extra changes to its API. To avoid creating and maintaining such documentation, one converts the dependent node ("child" above) into a tool script that implements - ``_get_configuration_warning()``. - Returning a non-empty string from it will make the Scene dock generate a - warning icon with the string as a tooltip by the node. This is the same icon + ``_get_configuration_warnings()``. + Returning a non-empty PackedStringArray from it will make the Scene dock generate a + warning icon with the string(s) as a tooltip by the node. This is the same icon that appears for nodes such as the :ref:`Area2D ` node when it has no child :ref:`CollisionShape2D ` nodes defined. The editor diff --git a/tutorials/best_practices/scenes_versus_scripts.rst b/tutorials/best_practices/scenes_versus_scripts.rst index 77b50cd1a4f..5e7b892c765 100644 --- a/tutorials/best_practices/scenes_versus_scripts.rst +++ b/tutorials/best_practices/scenes_versus_scripts.rst @@ -1,5 +1,3 @@ -:article_outdated: True - .. _doc_scenes_versus_scripts: When to use scenes versus scripts @@ -202,7 +200,7 @@ In the end, the best approach is to consider the following: security than scripts. - If one would like to give a name to a scene, then they can still sort of do - this in 3.1 by declaring a script class and giving it a scene as a constant. + this by declaring a script class and giving it a scene as a constant. The script becomes, in effect, a namespace: .. tabs:: diff --git a/tutorials/best_practices/version_control_systems.rst b/tutorials/best_practices/version_control_systems.rst index d40abb93c67..8c4a6882539 100644 --- a/tutorials/best_practices/version_control_systems.rst +++ b/tutorials/best_practices/version_control_systems.rst @@ -1,60 +1,89 @@ -:article_outdated: True - .. _doc_version_control_systems: -Version Control Systems +Version control systems ======================= Introduction ------------ -Godot aims to be VCS friendly and generate mostly readable and mergeable files. +Godot aims to be VCS-friendly and generate mostly readable and mergeable files. + +Version control plugins +----------------------- + Godot also supports the use of version control systems in the editor itself. -However, VCS in the editor requires a plugin for the specific VCS you are using. -VCS can be setup or shut down in the editor under **Project > Version Control**. +However, version control in the editor requires a plugin for the specific VCS +you're using. -.. image:: img/version_control_menu.png +As of July 2023, there is only a Git plugin available, but the community may +create additional VCS plugins. Official Git plugin -------------------- +^^^^^^^^^^^^^^^^^^^ + +.. warning:: + + As of July 2023, the Git plugin hasn't been updated to work with Godot 4.1 + and later yet. Using Git from inside the editor is supported with an official plugin. -You can find the latest releases -`here `__. Documentation on how to use the Git -plugin can be found -`here `__. +You can find the latest releases on +`GitHub `__. + +Documentation on how to use the Git plugin can be found on its +`wiki `__. Files to exclude from VCS ------------------------- -There are some files and folders Godot automatically creates. You should add them to your VCS ignore: +.. note:: + + This lists files and folders that should be ignored from version control in + Godot 4.1 and later. + + The list of files of folders that should be ignored from version control in + Godot 3.x and Godot 4.0 is **entirely** different. This is important, as Godot + 3.x and 4.0 may store sensitive credentials in ``export_presets.cfg`` (unlike Godot + 4.1 and later). -- ``.godot/``: This folder stores various project cache data. ``.godot/imported/`` stores - all the files the engine imports automatically based on your source assets and their - import flags. ``.godot/editor/`` holds data regarding the editor state, such as currently - opened script files, and recently used nodes. -- ``*.translation``: These files are binary imported translations generated from CSV files. -- ``export_presets.cfg``: This file contains all the export presets for the - project, including sensitive information such as Android keystore credentials. -- ``.mono/``: This folder stores automatically-generated Mono files. It only exists - in projects that use the Mono version of Godot. + If you are using Godot 3, check the ``3.5`` version of this documentation page + instead. -.. tip:: +There are some files and folders Godot automatically creates when opening a +project in the editor for the first time. To avoid bloating your version control +repository with generated data, you should add them to your VCS ignore: - Save `this .gitignore file `__ - in your project's root folder to set up file exclusions automatically. +- ``.godot/``: This folder stores various project cache data. +- ``*.translation``: These files are binary imported + :ref:`translations ` generated from CSV files. + +You can make the Godot project manager generate version control metadata for you +automatically when creating a project. When choosing the **Git** option, this +creates ``.gitignore`` and ``.gitattributes`` files in the project root: + +.. figure:: img/version_control_systems_generate_metadata.webp + :align: center + :alt: Creating version control metadata in the project manager's New Project dialog + + Creating version control metadata in the project manager's **New Project** dialog + +In existing projects, select the **Project** menu at the top of the editor, then +choose **Version Control > Generate Version Control Metadata**. This creates the +same files as if the operation was performed in the project manager. Working with Git on Windows --------------------------- -Most Git for Windows clients are configured with the ``core.autocrlf`` set to ``true``. -This can lead to files unnecessarily being marked as modified by Git due to their line endings being converted automatically. -It is better to set this option as:: +Most Git for Windows clients are configured with the ``core.autocrlf`` set to +``true``. This can lead to files unnecessarily being marked as modified by Git +due to their line endings being converted from LF to CRLF automatically. - git config --global core.autocrlf input +It is better to set this option as: -Known issues ------------- +:: + + git config --global core.autocrlf input -**Always close the editor** before running ``git pull``! Otherwise, you may -`lose data if you synchronize files while the editor is open `__. +Creating version control metadata using the project manager or editor will +automatically enforce LF line endings using the ``.gitattributes`` file. +In this case, you don't need to change your Git configuration. diff --git a/tutorials/best_practices/what_are_godot_classes.rst b/tutorials/best_practices/what_are_godot_classes.rst index 82e4645114e..9d6f28efe4f 100644 --- a/tutorials/best_practices/what_are_godot_classes.rst +++ b/tutorials/best_practices/what_are_godot_classes.rst @@ -1,5 +1,3 @@ -:article_outdated: True - .. _doc_what_are_godot_classes: Applying object-oriented principles in Godot @@ -54,15 +52,15 @@ The behavior of scenes has many similarities to classes, so it can make sense to a class. Scenes are reusable, instantiable, and inheritable groups of nodes. Creating a scene is similar to having a script that creates nodes and adds them as children using ``add_child()``. -We often pair a scene with a scripted root node that makes use of the scene's nodes. As such, +We often pair a scene with a scripted root node that makes use of the scene's nodes. As such, the script extends the scene by adding behavior through imperative code. The content of a scene helps to define: -- What nodes are available to the script -- How they are organized -- How they are initialized -- What signal connections they have with each other +- What nodes are available to the script. +- How they are organized. +- How they are initialized. +- What signal connections they have with each other. Why is any of this important to scene organization? Because instances of scenes *are* objects. As a result, many object-oriented principles that apply to written code also apply to scenes: single diff --git a/tutorials/editor/command_line_tutorial.rst b/tutorials/editor/command_line_tutorial.rst index 0f3fd7000f7..617ed12b66e 100644 --- a/tutorials/editor/command_line_tutorial.rst +++ b/tutorials/editor/command_line_tutorial.rst @@ -1,5 +1,3 @@ -:article_outdated: True - .. _doc_command_line_tutorial: Command line tutorial @@ -29,72 +27,87 @@ suitable for this workflow. Command line reference ---------------------- +.. |release| image:: img/template_release.svg +.. |debug| image:: img/template_debug.svg +.. |editor| image:: img/editor.svg + +**Legend** + +- |release| Available in editor builds, debug export templates and release export templates. +- |debug| Available in editor builds and debug export templates only. +- |editor| Only available in editor builds. + +Note that unknown command line arguments have no effect whatsoever. The engine +will **not** warn you when using a command line argument that doesn't exist with a +given build type. + **General options** -+----------------------------+----------------------------------------------------------------------+ -| Command | Description | -+----------------------------+----------------------------------------------------------------------+ -| ``-h``, ``--help`` | Display the list of command line options. | -+----------------------------+----------------------------------------------------------------------+ -| ``--version`` | Display the version string. | -+----------------------------+----------------------------------------------------------------------+ -| ``-v``, ``--verbose`` | Use verbose stdout mode. | -+----------------------------+----------------------------------------------------------------------+ -| ``-q, --quiet`` | Quiet mode, silences stdout messages. Errors are still displayed. | -+----------------------------+----------------------------------------------------------------------+ ++----------------------------+-----------------------------------------------------------------------------+ +| Command | Description | ++----------------------------+-----------------------------------------------------------------------------+ +| ``-h``, ``--help`` | |release| Display the list of command line options. | ++----------------------------+-----------------------------------------------------------------------------+ +| ``--version`` | |release| Display the version string. | ++----------------------------+-----------------------------------------------------------------------------+ +| ``-v``, ``--verbose`` | |release| Use verbose stdout mode. | ++----------------------------+-----------------------------------------------------------------------------+ +| ``-q``, ``--quiet`` | |release| Quiet mode, silences stdout messages. Errors are still displayed. | ++----------------------------+-----------------------------------------------------------------------------+ **Run options** +------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------+ | Command | Description | +------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| ``--`` | Separator for user-provided arguments. Following arguments are not used by the engine, but can be read from ``OS.get_cmdline_user_args()``. | +| ``--``, ``++`` | |release| Separator for user-provided arguments. Following arguments are not used by the engine, but can be read from ``OS.get_cmdline_user_args()``. | +------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| ``-e``, ``--editor`` | Start the editor instead of running the scene (:ref:`target=editor ` must be used). | +| ``-e``, ``--editor`` | |editor| Start the editor instead of running the scene. | +------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| ``-p``, ``--project-manager`` | Start the Project Manager, even if a project is auto-detected (:ref:`target=editor ` must be used). | +| ``-p``, ``--project-manager`` | |editor| Start the Project Manager, even if a project is auto-detected. | +------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| ``--debug-server `` | Start the editor debug server (``://[:]``, e.g. ``tcp://127.0.0.1:6007``) | +| ``--debug-server `` | |editor| Start the editor debug server (``://[:]``, e.g. ``tcp://127.0.0.1:6007``) | +------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| ``--quit`` | Quit after the first iteration. | +| ``--quit`` | |release| Quit after the first iteration. | +------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| ``-l``, ``--language `` | Use a specific locale. ```` follows the format ``language_Script_COUNTRY_VARIANT`` where language is a 2 or 3-letter language code in lower case | -| | and the rest is optional. See :ref:`doc_locales` for more details. | +| ``--quit-after`` | |release| Quit after the given number of iterations. Set to 0 to disable. | +------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| ``--path `` | Path to a project (```` must contain a 'project.godot' file). | +| ``-l``, ``--language `` | |release| Use a specific locale. ```` follows the format ``language_Script_COUNTRY_VARIANT`` where language is a 2 or 3-letter language code in | +| | lowercase and the rest is optional. See :ref:`doc_locales` for more details. | +------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| ``-u``, ``--upwards`` | Scan folders upwards for 'project.godot' file. | +| ``--path `` | |release| Path to a project (```` must contain a 'project.godot' file). | +------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| ``--main-pack `` | Path to a pack (.pck) file to load. | +| ``-u``, ``--upwards`` | |release| Scan folders upwards for 'project.godot' file. | +------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| ``--render-thread `` | Render thread mode ('unsafe', 'safe', 'separate'). See :ref:`Thread Model ` | -| | for more details. | +| ``--main-pack `` | |release| Path to a pack (.pck) file to load. | +------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| ``--remote-fs
`` | Remote filesystem (``[:]`` address). | +| ``--render-thread `` | |release| Render thread mode ('unsafe', 'safe', 'separate'). See :ref:`Thread Model ` | +| | for more details. | +------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| ``--remote-fs-password `` | Password for remote filesystem. | +| ``--remote-fs
`` | |release| Remote filesystem (``[:]`` address). | +------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| ``--audio-driver `` | Audio driver. Use ``--help`` first to display the list of available drivers. | +| ``--remote-fs-password `` | |release| Password for remote filesystem. | +------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| ``--display-driver `` | Display driver (and rendering driver). Use ``--help`` first to display the list of available drivers. | +| ``--audio-driver `` | |release| Audio driver. Use ``--help`` first to display the list of available drivers. | +------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| ``--rendering-method `` | Renderer name. Requires driver support. | +| ``--display-driver `` | |release| Display driver (and rendering driver). Use ``--help`` first to display the list of available drivers. | +------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| ``--rendering-driver `` | Rendering driver (depends on display driver). Use ``--help`` first to display the list of available drivers. | +| ``--rendering-method `` | |release| Renderer name. Requires driver support. | +------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| ``--gpu-index `` | Use a specific GPU (run with ``--verbose`` to get available device list). | +| ``--rendering-driver `` | |release| Rendering driver (depends on display driver). Use ``--help`` first to display the list of available drivers. | +------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| ``--text-driver `` | Text driver ('Fonts', 'BiDi', 'shaping') | +| ``--gpu-index `` | |release| Use a specific GPU (run with ``--verbose`` to get available device list). | +------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| ``--tablet-driver `` | Pen tablet input driver. | +| ``--text-driver `` | |release| Text driver (Fonts, BiDi, shaping). | +------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| ``--headless`` | Enable headless mode (``--display-driver headless --audio-driver Dummy``). Useful for servers and with ``--script``. | +| ``--tablet-driver `` | |release| Pen tablet input driver. | +------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| ``--write-movie `` | Run the engine in a way that a movie is written (by default .avi MJPEG). Fixed FPS is forced when enabled, but can be used to change movie FPS. | -| | Disabling vsync can speed up movie writing but makes interaction more difficult. | +| ``--headless`` | |release| Enable headless mode (``--display-driver headless --audio-driver Dummy``). Useful for servers and with ``--script``. | +------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| ``--disable-vsync`` | Force disabling of vsync. Run the engine in a way that a movie is written (by default .avi MJPEG). | -| | Fixed FPS is forced when enabled, but can be used to change movie FPS. | +| ``--write-movie `` | |release| Run the engine in a way that a movie is written (usually with .avi or .png extension). | +| | ``--fixed-fps`` is forced when enabled, but can be used to change movie FPS. | +| | ``--disable-vsync`` can speed up movie writing but makes interaction more difficult. | +| | ``--quit-after`` can be used to specify the number of frames to write. | +------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------+ **Display options** @@ -102,117 +115,148 @@ Command line reference +------------------------------------+----------------------------------------------------------------------------+ | Command | Description | +------------------------------------+----------------------------------------------------------------------------+ -| ``-f``, ``--fullscreen`` | Request fullscreen mode. | +| ``-f``, ``--fullscreen`` | |release| Request fullscreen mode. | +------------------------------------+----------------------------------------------------------------------------+ -| ``-m``, ``--maximized`` | Request a maximized window. | +| ``-m``, ``--maximized`` | |release| Request a maximized window. | +------------------------------------+----------------------------------------------------------------------------+ -| ``-w``, ``--windowed`` | Request windowed mode. | +| ``-w``, ``--windowed`` | |release| Request windowed mode. | +------------------------------------+----------------------------------------------------------------------------+ -| ``-t``, ``--always-on-top`` | Request an always-on-top window. | +| ``-t``, ``--always-on-top`` | |release| Request an always-on-top window. | +------------------------------------+----------------------------------------------------------------------------+ -| ``--resolution x`` | Request window resolution. | +| ``--resolution x`` | |release| Request window resolution. | +------------------------------------+----------------------------------------------------------------------------+ -| ``--position ,`` | Request window position. | +| ``--position ,`` | |release| Request window position. | +------------------------------------+----------------------------------------------------------------------------+ -| ``--single-window`` | Use a single window (no separate subwindows). | +| ``--screen `` | |release| Request window screen. | +------------------------------------+----------------------------------------------------------------------------+ -| ``--xr-mode `` | Select XR mode (default/off/on). | +| ``--single-window`` | |release| Use a single window (no separate subwindows). | ++------------------------------------+----------------------------------------------------------------------------+ +| ``--xr-mode `` | |release| Select XR mode ('default', 'off', 'on'). | +------------------------------------+----------------------------------------------------------------------------+ **Debug options** -.. note:: - - Debug options are only available in the editor and debug export templates - (they require ``debug`` or ``release_debug`` build targets, see - :ref:`doc_introduction_to_the_buildsystem_target` for more details). - -+------------------------------+---------------------------------------------------------------------------------------------------------+ -| Command | Description | -+------------------------------+---------------------------------------------------------------------------------------------------------+ -| ``-d``, ``--debug`` | Debug (local stdout debugger). | -+------------------------------+---------------------------------------------------------------------------------------------------------+ -| ``-b``, ``--breakpoints`` | Breakpoint list as source::line comma-separated pairs, no spaces (use %20 instead). | -+------------------------------+---------------------------------------------------------------------------------------------------------+ -| ``--profiling`` | Enable profiling in the script debugger. | -+------------------------------+---------------------------------------------------------------------------------------------------------+ -| ``--gpu-profile`` | Show a GPU profile of the tasks that took the most time during frame rendering. | -+------------------------------+---------------------------------------------------------------------------------------------------------+ -| ``--gpu-validation`` | Enable graphics API :ref:`validation layers ` for debugging. | -+------------------------------+---------------------------------------------------------------------------------------------------------+ -| ``--gpu-abort`` | Abort on GPU errors (usually validation layer errors), may help see the problem if your system freezes. | -+------------------------------+---------------------------------------------------------------------------------------------------------+ -| ``--remote-debug `` | Remote debug (``://[:]``, e.g. ``tcp://127.0.0.1:6007``). | -+------------------------------+---------------------------------------------------------------------------------------------------------+ -| ``--debug-collisions`` | Show collision shapes when running the scene. | -+------------------------------+---------------------------------------------------------------------------------------------------------+ -| ``--debug-paths`` | Show path lines when running the scene. | -+------------------------------+---------------------------------------------------------------------------------------------------------+ -| ``--debug-navigation`` | Show navigation polygons when running the scene. | -+------------------------------+---------------------------------------------------------------------------------------------------------+ -| ``--debug-stringnames`` | Print all StringName allocations to stdout when the engine quits. | -+------------------------------+---------------------------------------------------------------------------------------------------------+ -| ``--frame-delay `` | Simulate high CPU load (delay each frame by milliseconds). | -+------------------------------+---------------------------------------------------------------------------------------------------------+ -| ``--time-scale `` | Force time scale (higher values are faster, 1.0 is normal speed). | -+------------------------------+---------------------------------------------------------------------------------------------------------+ -| ``--disable-render-loop`` | Disable render loop so rendering only occurs when called explicitly from script. | -+------------------------------+---------------------------------------------------------------------------------------------------------+ -| ``--disable-crash-handler`` | Disable crash handler when supported by the platform code. | -+------------------------------+---------------------------------------------------------------------------------------------------------+ -| ``--fixed-fps `` | Force a fixed number of frames per second. This setting disables real-time synchronization. | -+------------------------------+---------------------------------------------------------------------------------------------------------+ -| ``--print-fps`` | Print the frames per second to the stdout. | -+------------------------------+---------------------------------------------------------------------------------------------------------+ ++--------------------------------+-----------------------------------------------------------------------------------------------------------------+ +| Command | Description | ++--------------------------------+-----------------------------------------------------------------------------------------------------------------+ +| ``-d``, ``--debug`` | |release| Debug (local stdout debugger). | ++--------------------------------+-----------------------------------------------------------------------------------------------------------------+ +| ``-b``, ``--breakpoints`` | |release| Breakpoint list as source::line comma-separated pairs, no spaces (use ``%20`` instead). | ++--------------------------------+-----------------------------------------------------------------------------------------------------------------+ +| ``--profiling`` | |release| Enable profiling in the script debugger. | ++--------------------------------+-----------------------------------------------------------------------------------------------------------------+ +| ``--gpu-profile`` | |release| Show a GPU profile of the tasks that took the most time during frame rendering. | ++--------------------------------+-----------------------------------------------------------------------------------------------------------------+ +| ``--gpu-validation`` | |release| Enable graphics API :ref:`validation layers ` for debugging. | ++--------------------------------+-----------------------------------------------------------------------------------------------------------------+ +| ``--gpu-abort`` | |debug| Abort on GPU errors (usually validation layer errors), may help see the problem if your system freezes. | ++--------------------------------+-----------------------------------------------------------------------------------------------------------------+ +| ``--remote-debug `` | |release| Remote debug (``://[:]``, e.g. ``tcp://127.0.0.1:6007``). | ++--------------------------------+-----------------------------------------------------------------------------------------------------------------+ +| ``--single-threaded-scene`` | |release| Scene tree runs in single-threaded mode. Sub-thread groups are disabled and run on the main thread. | ++--------------------------------+-----------------------------------------------------------------------------------------------------------------+ +| ``--debug-collisions`` | |debug| Show collision shapes when running the scene. | ++--------------------------------+-----------------------------------------------------------------------------------------------------------------+ +| ``--debug-paths`` | |debug| Show path lines when running the scene. | ++--------------------------------+-----------------------------------------------------------------------------------------------------------------+ +| ``--debug-navigation`` | |debug| Show navigation polygons when running the scene. | ++--------------------------------+-----------------------------------------------------------------------------------------------------------------+ +| ``--debug-avoidance`` | |debug| Show navigation avoidance debug visuals when running the scene. | ++--------------------------------+-----------------------------------------------------------------------------------------------------------------+ +| ``--debug-stringnames`` | |debug| Print all StringName allocations to stdout when the engine quits. | ++--------------------------------+-----------------------------------------------------------------------------------------------------------------+ +| ``--frame-delay `` | |release| Simulate high CPU load (delay each frame by milliseconds). | ++--------------------------------+-----------------------------------------------------------------------------------------------------------------+ +| ``--time-scale `` | |release| Force time scale (higher values are faster, 1.0 is normal speed). | ++--------------------------------+-----------------------------------------------------------------------------------------------------------------+ +| ``--disable-vsync`` | |release| Forces disabling of vertical synchronization, even if enabled in the project settings. | +| | Does not override driver-level V-Sync enforcement. | ++--------------------------------+-----------------------------------------------------------------------------------------------------------------+ +| ``--disable-render-loop`` | |release| Disable render loop so rendering only occurs when called explicitly from script. | ++--------------------------------+-----------------------------------------------------------------------------------------------------------------+ +| ``--disable-crash-handler`` | |release| Disable crash handler when supported by the platform code. | ++--------------------------------+-----------------------------------------------------------------------------------------------------------------+ +| ``--fixed-fps `` | |release| Force a fixed number of frames per second. This setting disables real-time synchronization. | ++--------------------------------+-----------------------------------------------------------------------------------------------------------------+ +| ``--delta-smoothing `` | |release| Enable or disable frame delta smoothing ('enable', 'disable'). | ++--------------------------------+-----------------------------------------------------------------------------------------------------------------+ +| ``--print-fps`` | |release| Print the frames per second to the stdout. | ++--------------------------------+-----------------------------------------------------------------------------------------------------------------+ **Standalone tools** -+------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------+ -| Command | Description | -+------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------+ -| ``-s``, ``--script