diff options
author | Haoyu Qiu <timothyqiu32@gmail.com> | 2023-09-05 15:54:29 +0800 |
---|---|---|
committer | Haoyu Qiu <timothyqiu32@gmail.com> | 2023-09-05 15:57:39 +0800 |
commit | 4675e047bb5ea5455c02f727d5ae681da42d7bc6 (patch) | |
tree | f4ec7a0bd7998ad5dc4a9f14fbe31a1326afa8cf | |
parent | 75de1ca76871fdf7f5a9e081aa57ec0e33061107 (diff) | |
download | redot-engine-4675e047bb5ea5455c02f727d5ae681da42d7bc6.tar.gz |
Fix unmatched brackets in the documentation
-rw-r--r-- | doc/classes/EditorResourceTooltipPlugin.xml | 2 | ||||
-rw-r--r-- | doc/classes/SpringArm3D.xml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/classes/EditorResourceTooltipPlugin.xml b/doc/classes/EditorResourceTooltipPlugin.xml index 69c5f30f25..acfa881ab1 100644 --- a/doc/classes/EditorResourceTooltipPlugin.xml +++ b/doc/classes/EditorResourceTooltipPlugin.xml @@ -24,7 +24,7 @@ <param index="2" name="base" type="Control" /> <description> Create and return a tooltip that will be displayed when the user hovers a resource under the given [param path] in filesystem dock. - The [param metadata] dictionary is provided by preview generator (see method EditorResourcePreviewGenerator._generate]). + The [param metadata] dictionary is provided by preview generator (see [method EditorResourcePreviewGenerator._generate]). [param base] is the base default tooltip, which is a [VBoxContainer] with a file name, type and size labels. If another plugin handled the same file type, [param base] will be output from the previous plugin. For best result, make sure the base tooltip is part of the returned [Control]. [b]Note:[/b] It's unadvised to use [method ResourceLoader.load], especially with heavy resources like models or textures, because it will make the editor unresponsive when creating the tooltip. You can use [method request_thumbnail] if you want to display a preview in your tooltip. [b]Note:[/b] If you decide to discard the [param base], make sure to call [method Node.queue_free], because it's not freed automatically. diff --git a/doc/classes/SpringArm3D.xml b/doc/classes/SpringArm3D.xml index 6e12d9a613..99389fb78d 100644 --- a/doc/classes/SpringArm3D.xml +++ b/doc/classes/SpringArm3D.xml @@ -4,7 +4,7 @@ A 3D raycast that dynamically moves its children near the collision point. </brief_description> <description> - [SpringArm3D] casts a ray or a shape along its Z axis and moves all its direct children to the collision point, with an optional margin. This is useful for 3rd person cameras that move closer to the player when inside a tight space (you may need to exclude the player's collider from the [SpringArm3D]'s collision check. + [SpringArm3D] casts a ray or a shape along its Z axis and moves all its direct children to the collision point, with an optional margin. This is useful for 3rd person cameras that move closer to the player when inside a tight space (you may need to exclude the player's collider from the [SpringArm3D]'s collision check). </description> <tutorials> </tutorials> |