Skip to content

Commit 387d5f8

Browse files
committed
Fix glTF capitalization in manual
1 parent c33e058 commit 387d5f8

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

getting_started/first_3d_game/02.player_input.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,10 @@ You can rename it to ``Character``.
5151

5252
.. note::
5353

54-
The ``.glb`` files contain 3D scene data based on the open source GLTF 2.0
54+
The ``.glb`` files contain 3D scene data based on the open source glTF 2.0
5555
specification. They're a modern and powerful alternative to a proprietary format
5656
like FBX, which Godot also supports. To produce these files, we designed the
57-
model in `Blender 3D <https://www.blender.org/>`__ and exported it to GLTF.
57+
model in `Blender 3D <https://www.blender.org/>`__ and exported it to glTF.
5858

5959
As with all kinds of physics nodes, we need a collision shape for our character
6060
to collide with the environment. Select the ``Player`` node again and add a child node

tutorials/platform/android/android_library.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,11 @@ These APIs can also be used to provide bidirectional communication between the h
4545
Godot instance allowing for greater control over the desired experience.
4646

4747
We showcase how this is done using a sample Android app that embeds the Godot Engine as an Android view,
48-
and uses it to render 3D GLTF models.
48+
and uses it to render 3D glTF models.
4949

5050
The `GLTF Viewer <https://github.com/m4gr3d/Godot-Android-Samples/tree/master/apps/gltf_viewer>`_ sample app uses an `Android RecyclerView component <https://developer.android.com/develop/ui/views/layout/recyclerview>`_ to create
51-
a list of GLTF items, populated from `Kenney's Food Kit pack <https://kenney.nl/assets/food-kit>`_.
52-
When an item on the list is selected, the app's logic interacts with the embedded Godot Engine to render the selected GLTF item as a 3D model.
51+
a list of glTF items, populated from `Kenney's Food Kit pack <https://kenney.nl/assets/food-kit>`_.
52+
When an item on the list is selected, the app's logic interacts with the embedded Godot Engine to render the selected glTF item as a 3D model.
5353

5454
.. image:: img/gltf_viewer_sample_app_screenshot.webp
5555

@@ -146,7 +146,7 @@ Below we break-down the steps used to create the GLTF Viewer app.
146146

147147
- Add any additional logic that will be used by your application
148148

149-
- For the sample app, this includes adding the `ItemsSelectionFragment fragment <https://github.com/m4gr3d/Godot-Android-Samples/blob/master/apps/gltf_viewer/src/main/java/fhuyakou/godot/app/android/gltfviewer/ItemsSelectionFragment.kt>`_ (and related classes), a fragment used to build and show the list of GLTF items
149+
- For the sample app, this includes adding the `ItemsSelectionFragment fragment <https://github.com/m4gr3d/Godot-Android-Samples/blob/master/apps/gltf_viewer/src/main/java/fhuyakou/godot/app/android/gltfviewer/ItemsSelectionFragment.kt>`_ (and related classes), a fragment used to build and show the list of glTF items
150150

151151
- Open the ``AndroidManifest.xml`` file, and configure the orientation if needed using the `android:screenOrientation attribute <https://developer.android.com/guide/topics/manifest/activity-element#screen>`_
152152

@@ -191,7 +191,7 @@ Below we break-down the steps used to create the GLTF Viewer app.
191191
- Update the Godot project script logic as needed
192192

193193
- For the sample app, the `script logic <https://github.com/m4gr3d/Godot-Android-Samples/blob/master/apps/gltf_viewer/src/main/assets/main.gd>`_ queries for the runtime ``GodotPlugin`` instance and uses it to register for signals fired by the app logic
194-
- The app logic fires a signal every time an item is selected in the list. The signal contains the filepath of the GLTF model, which is used by the ``gdscript`` logic to render the model.
194+
- The app logic fires a signal every time an item is selected in the list. The signal contains the filepath of the glTF model, which is used by the ``gdscript`` logic to render the model.
195195

196196
.. code-block:: gdscript
197197

tutorials/xr/openxr_hand_tracking.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ For this Godot uses the hand bone structure as defined for the :ref:`Godot Human
127127
but optionally supporting an extra tip bone for each finger.
128128

129129
The `OpenXR hand tracking demo <https://github.com/godotengine/godot-demo-projects/tree/master/xr/openxr_hand_tracking_demo>`_
130-
contains example GLTF files of properly rigged hands.
130+
contains example glTF files of properly rigged hands.
131131

132132
We will be using those here and add them as a child to our ``XRNode3D`` node.
133133
We also need to enable editable children to gain access to our :ref:`Skeleton3D <class_skeleton3d>` node.

0 commit comments

Comments
 (0)