From bd25f5813a438d3b0771b27ac9efb227d89d8232 Mon Sep 17 00:00:00 2001 From: tetrapod00 <145553014+tetrapod00@users.noreply.github.com> Date: Sat, 14 Dec 2024 20:36:17 -0800 Subject: [PATCH] Simply remove some words --- .../development/handling_compatibility_breakages.rst | 2 +- tutorials/assets_pipeline/import_process.rst | 2 +- tutorials/performance/general_optimization.rst | 2 +- tutorials/platform/web/javascript_bridge.rst | 2 +- tutorials/rendering/compositor.rst | 3 +-- tutorials/scripting/gdextension/gdextension_cpp_example.rst | 4 ++-- tutorials/scripting/gdscript/gdscript_advanced.rst | 3 +-- tutorials/shaders/shader_reference/shader_functions.rst | 2 +- tutorials/ui/bbcode_in_richtextlabel.rst | 2 +- tutorials/ui/custom_gui_controls.rst | 2 +- tutorials/xr/introducing_xr_tools.rst | 3 ++- tutorials/xr/openxr_composition_layers.rst | 4 ++-- tutorials/xr/openxr_hand_tracking.rst | 2 +- tutorials/xr/setting_up_xr.rst | 6 +++++- tutorials/xr/xr_action_map.rst | 4 ++-- 15 files changed, 23 insertions(+), 20 deletions(-) diff --git a/contributing/development/handling_compatibility_breakages.rst b/contributing/development/handling_compatibility_breakages.rst index 23407e19ffc..3850b6f75fe 100644 --- a/contributing/development/handling_compatibility_breakages.rst +++ b/contributing/development/handling_compatibility_breakages.rst @@ -100,7 +100,7 @@ like ``core/math/a_star_grid_2d.compat.inc`` in this case: #endif // DISABLE_DEPRECATED -Unless the change in compatibility is complex, the compatibility method should simply call the modified method directly, +Unless the change in compatibility is complex, the compatibility method should call the modified method directly, instead of duplicating that method. Make sure to match the default arguments for that method (in the example above this would be ``false``). This file should always be placed next to the original file, and have ``.compat.inc`` at the end instead of ``.cpp`` or ``.h``. diff --git a/tutorials/assets_pipeline/import_process.rst b/tutorials/assets_pipeline/import_process.rst index f3e23002853..b3b81d8acdc 100644 --- a/tutorials/assets_pipeline/import_process.rst +++ b/tutorials/assets_pipeline/import_process.rst @@ -47,7 +47,7 @@ be discarded. After clicking **Reimport**, the chosen parameters will only be used for this asset and on future reimports. Changing the import parameters of several assets at the same time is also -possible. Simply select all of them together in the resources dock and the +possible. Select all of them together in the FileSystem dock and the exposed parameters will apply to all of them when reimporting. Reimporting multiple assets diff --git a/tutorials/performance/general_optimization.rst b/tutorials/performance/general_optimization.rst index e8d25bffc97..0eedd580713 100644 --- a/tutorials/performance/general_optimization.rst +++ b/tutorials/performance/general_optimization.rst @@ -226,7 +226,7 @@ algorithms and data structures are the best they can be. Data access should be local (to make best use of CPU cache), and it can often be better to use compact storage of data (again, always profile to test results). Often, you precalculate heavy computations ahead of time. This can be done by performing the computation -when loading a level, by loading a file containing precalculated data or simply +when loading a level, by loading a file containing precalculated data, or by storing the results of complex calculations into a script constant and reading its value. diff --git a/tutorials/platform/web/javascript_bridge.rst b/tutorials/platform/web/javascript_bridge.rst index 375bb6117ae..b7b3f0e5659 100644 --- a/tutorials/platform/web/javascript_bridge.rst +++ b/tutorials/platform/web/javascript_bridge.rst @@ -136,7 +136,7 @@ Can I use my favorite library? ------------------------------ You most likely can. First, you have to -include your library in the page. You can simply customize the +include your library in the page. You can customize the :ref:`Head Include ` during export (see below), or even :ref:`write your own template `. diff --git a/tutorials/rendering/compositor.rst b/tutorials/rendering/compositor.rst index aea9db5b9f2..5dde5dbf515 100644 --- a/tutorials/rendering/compositor.rst +++ b/tutorials/rendering/compositor.rst @@ -12,8 +12,7 @@ a :ref:`Camera3D ` and apply only to the Viewport using that camera. The :ref:`Compositor ` resource is used to configure -the compositor. To get started, simply create a new compositor on -the appropriate node: +the compositor. To get started, create a new compositor on the appropriate node: .. image:: img/new_compositor.webp diff --git a/tutorials/scripting/gdextension/gdextension_cpp_example.rst b/tutorials/scripting/gdextension/gdextension_cpp_example.rst index 0440b3d3283..4651869eeb8 100644 --- a/tutorials/scripting/gdextension/gdextension_cpp_example.rst +++ b/tutorials/scripting/gdextension/gdextension_cpp_example.rst @@ -96,8 +96,8 @@ Now that we've downloaded our prerequisites, it is time to build the C++ bindings. The repository contains a copy of the metadata for the current Godot release, -but if you need to build these bindings for a newer version of Godot, simply -call the Godot executable: +but if you need to build these bindings for a newer version of Godot, call +the Godot executable: .. code-block:: none diff --git a/tutorials/scripting/gdscript/gdscript_advanced.rst b/tutorials/scripting/gdscript/gdscript_advanced.rst index 01d443c8e04..7b2c7d5a049 100644 --- a/tutorials/scripting/gdscript/gdscript_advanced.rst +++ b/tutorials/scripting/gdscript/gdscript_advanced.rst @@ -525,5 +525,4 @@ exists is desirable: if object.has_method("smash"): object.smash() -Then, simply define that method and anything the rock touches can be -smashed. +Then, define that method and anything the rock touches can be smashed. diff --git a/tutorials/shaders/shader_reference/shader_functions.rst b/tutorials/shaders/shader_reference/shader_functions.rst index 39274c5763a..0d80f7373e4 100644 --- a/tutorials/shaders/shader_reference/shader_functions.rst +++ b/tutorials/shaders/shader_reference/shader_functions.rst @@ -3645,7 +3645,7 @@ Bitwise function descriptions The returned value will have bits [offset, offset + bits + 1] taken from [0, bits - 1] of ``insert`` and all other bits taken directly from the corresponding bits of base. - .. note:: If bits is zero, the result will simply be the original value of base. + .. note:: If bits is zero, the result will be the original value of base. .. warning:: The result will be undefined if: diff --git a/tutorials/ui/bbcode_in_richtextlabel.rst b/tutorials/ui/bbcode_in_richtextlabel.rst index 18ae2e2f25e..82efe33e5f4 100644 --- a/tutorials/ui/bbcode_in_richtextlabel.rst +++ b/tutorials/ui/bbcode_in_richtextlabel.rst @@ -1052,7 +1052,7 @@ the Inspector by adding it to the **Markup > Custom Effects** array, or in code tag will be left as-is. There is only one function that you need to extend: ``_process_custom_fx(char_fx)``. -Optionally, you can also provide a custom BBCode identifier simply by adding a member +Optionally, you can also provide a custom BBCode identifier by adding a member name ``bbcode``. The code will check the ``bbcode`` property automatically or will use the name of the file to determine what the BBCode tag should be. diff --git a/tutorials/ui/custom_gui_controls.rst b/tutorials/ui/custom_gui_controls.rst index 5765ae116a7..d9e89fc2fbc 100644 --- a/tutorials/ui/custom_gui_controls.rst +++ b/tutorials/ui/custom_gui_controls.rst @@ -131,7 +131,7 @@ when: This function is :ref:`Control._gui_input() `. -Simply override it in your control. No processing needs to be set. +To use it, override it in your control. No processing needs to be set. .. tabs:: .. code-tab:: gdscript GDScript diff --git a/tutorials/xr/introducing_xr_tools.rst b/tutorials/xr/introducing_xr_tools.rst index 80bdfd35cda..d260a42182c 100644 --- a/tutorials/xr/introducing_xr_tools.rst +++ b/tutorials/xr/introducing_xr_tools.rst @@ -26,7 +26,8 @@ Installing XR Tools Continuing on from our project we started in :ref:`doc_setting_up_xr` we want to add in the Godot XR Tools library. This can be downloaded from the `Godot XR Tools releases page `_. -Simply find the latest pre-release for Godot 4 and then under assets download the ``godot-xr-tools.zip`` file. +Find the latest release for Godot 4, and under **Assets**, download the +``godot-xr-tools.zip`` file. Once downloaded unzip the file. You will notice the files are held within a ``godot-xr-tools`` subfolder. diff --git a/tutorials/xr/openxr_composition_layers.rst b/tutorials/xr/openxr_composition_layers.rst index 2c959290699..89a0fca1db3 100644 --- a/tutorials/xr/openxr_composition_layers.rst +++ b/tutorials/xr/openxr_composition_layers.rst @@ -72,7 +72,7 @@ Adding a composition layer -------------------------- The second step is adding our composition layer. -We simply add the correct composition layer node as a child node of +We can add the correct composition layer node as a child node of our :ref:`XROrigin3D ` node. This is very important as the XR runtime positions everything in relation to our origin. @@ -263,7 +263,7 @@ Next we remember our state for next frame. ... -Finally, if we aren't intersecting, we simply clear our state. +Finally, if we aren't intersecting, we clear our state. .. code:: gdscript diff --git a/tutorials/xr/openxr_hand_tracking.rst b/tutorials/xr/openxr_hand_tracking.rst index 5d91708ca97..ed55f65737b 100644 --- a/tutorials/xr/openxr_hand_tracking.rst +++ b/tutorials/xr/openxr_hand_tracking.rst @@ -185,7 +185,7 @@ You can access this information through code: else: print("No hand tracker registered") -This example simply logs the state for the left hand. +This example logs the state for the left hand. If in this example no hand tracker is returned by ``get_tracker``, this means the hand tracking API is not supported on the XR runtime at all. diff --git a/tutorials/xr/setting_up_xr.rst b/tutorials/xr/setting_up_xr.rst index 1c53e12bb20..431f3a2aa6d 100644 --- a/tutorials/xr/setting_up_xr.rst +++ b/tutorials/xr/setting_up_xr.rst @@ -31,7 +31,11 @@ There are other XR related nodes and there is much more to say about these three Prerequisites for XR in Godot 4 ------------------------------- -While in Godot 3 most things worked out of the box, Godot 4 needs a little more setup. This is mainly due to the more advanced nature of the Vulkan renderer. There are many rendering features in Vulkan the XR system uses that aren't enabled by default. They are very easy to turn on, simply open up your project settings and tick the XR shaders tickbox in the XR section: +While in Godot 3 most things worked out of the box, Godot 4 needs a little more +setup. This is mainly due to the more advanced nature of the Vulkan renderer. +There are many rendering features in Vulkan the XR system uses that aren't +enabled by default. To turn them on, open up your project settings and tick +:ref:`XR > Shaders > Enabled `: .. image:: img/xr_shaders.png diff --git a/tutorials/xr/xr_action_map.rst b/tutorials/xr/xr_action_map.rst index 082046de282..1c2be16e794 100644 --- a/tutorials/xr/xr_action_map.rst +++ b/tutorials/xr/xr_action_map.rst @@ -52,7 +52,7 @@ Godot will automatically create a default action map if no action map file is fo It prevents having to design a proper action map for their game/application first. For this walkthrough we're going to start with a blank action map. -You can simply delete the "Godot action set" entry at the top by pressing the trash can icon. +You can delete the "Godot action set" entry at the top by pressing the trash can icon. This will clear out all actions. You might also want to remove the controllers that you do not wish to setup, more on this later. @@ -257,7 +257,7 @@ Profiles -------- In OpenXR controller bindings are captured in so-called "Interaction Profiles". -We've simply shortened it to "Profiles" because it takes up less space. +We've shortened it to "Profiles" because it takes up less space. This generic name is chosen because controllers don't cover the entire system. Currently there are also profiles for trackers, remotes and tracked pens.