Skip to content

Commit 07f92e6

Browse files
authored
Merge pull request #788 from mcdubhghlas/4.3
[4.3] Rebranding: editor/ + doc/
2 parents 7e93ced + 4c0d530 commit 07f92e6

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

123 files changed

+253
-253
lines changed

doc/classes/AudioStreamMicrophone.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@
99
</description>
1010
<tutorials>
1111
<link title="Recording with microphone">$DOCS_URL/tutorials/audio/recording_with_microphone.html</link>
12-
<link title="Audio Mic Record Demo">https://github.com/godotengine/godot-demo-projects/tree/master/audio/mic_record</link>
12+
<link title="Audio Mic Record Demo">https://github.com/redot-engine/redot-demo-projects/tree/master/audio/mic_record</link>
1313
</tutorials>
1414
</class>

doc/classes/BaseMaterial3D.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,8 +125,8 @@
125125
</member>
126126
<member name="billboard_mode" type="int" setter="set_billboard_mode" getter="get_billboard_mode" enum="BaseMaterial3D.BillboardMode" default="0">
127127
Controls how the object faces the camera. See [enum BillboardMode].
128-
[b]Note:[/b] When billboarding is enabled and the material also casts shadows, billboards will face [b]the[/b] camera in the scene when rendering shadows. In scenes with multiple cameras, the intended shadow cannot be determined and this will result in undefined behavior. See [url=https://github.com/godotengine/godot/pull/72638]GitHub Pull Request #72638[/url] for details.
129-
[b]Note:[/b] Billboard mode is not suitable for VR because the left-right vector of the camera is not horizontal when the screen is attached to your head instead of on the table. See [url=https://github.com/godotengine/godot/issues/41567]GitHub issue #41567[/url] for details.
128+
[b]Note:[/b] When billboarding is enabled and the material also casts shadows, billboards will face [b]the[/b] camera in the scene when rendering shadows. In scenes with multiple cameras, the intended shadow cannot be determined and this will result in undefined behavior. See [url=https://github.com/godotengine/godot-docs/pull/72638]GitHub Pull Request #72638[/url] for details.
129+
[b]Note:[/b] Billboard mode is not suitable for VR because the left-right vector of the camera is not horizontal when the screen is attached to your head instead of on the table. See [url=https://github.com/godotengine/godot-docs/issues/41567]GitHub issue #41567[/url] for details.
130130
</member>
131131
<member name="blend_mode" type="int" setter="set_blend_mode" getter="get_blend_mode" enum="BaseMaterial3D.BlendMode" default="0">
132132
The material's blend mode.

doc/classes/Camera3D.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,15 +58,15 @@
5858
<return type="bool" />
5959
<param index="0" name="world_point" type="Vector3" />
6060
<description>
61-
Returns [code]true[/code] if the given position is behind the camera (the blue part of the linked diagram). [url=https://raw.githubusercontent.com/godotengine/godot-docs/master/img/camera3d_position_frustum.png]See this diagram[/url] for an overview of position query methods.
61+
Returns [code]true[/code] if the given position is behind the camera (the blue part of the linked diagram). [url=https://raw.githubusercontent.com/Redot-Engine/redot-docs/master/img/camera3d_position_frustum.png]See this diagram[/url] for an overview of position query methods.
6262
[b]Note:[/b] A position which returns [code]false[/code] may still be outside the camera's field of view.
6363
</description>
6464
</method>
6565
<method name="is_position_in_frustum" qualifiers="const">
6666
<return type="bool" />
6767
<param index="0" name="world_point" type="Vector3" />
6868
<description>
69-
Returns [code]true[/code] if the given position is inside the camera's frustum (the green part of the linked diagram). [url=https://raw.githubusercontent.com/godotengine/godot-docs/master/img/camera3d_position_frustum.png]See this diagram[/url] for an overview of position query methods.
69+
Returns [code]true[/code] if the given position is inside the camera's frustum (the green part of the linked diagram). [url=https://raw.githubusercontent.com/Redot-Engine/redot-docs/master/img/camera3d_position_frustum.png]See this diagram[/url] for an overview of position query methods.
7070
</description>
7171
</method>
7272
<method name="make_current">

doc/classes/CameraServer.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<description>
77
The [CameraServer] keeps track of different cameras accessible in Redot. These are external cameras such as webcams or the cameras on your phone.
88
It is notably used to provide AR modules with a video feed from the camera.
9-
[b]Note:[/b] This class is currently only implemented on macOS and iOS. To get a [CameraFeed] on iOS, the camera plugin from [url=https://github.com/godotengine/godot-ios-plugins]godot-ios-plugins[/url] is required. On other platforms, no [CameraFeed]s will be available.
9+
[b]Note:[/b] This class is currently only implemented on macOS and iOS. To get a [CameraFeed] on iOS, the camera plugin from [url=https://github.com/Redot-Engine/redot-ios-plugins]godot-ios-plugins[/url] is required. On other platforms, no [CameraFeed]s will be available.
1010
</description>
1111
<tutorials>
1212
</tutorials>

doc/classes/EditorSettings.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -861,7 +861,7 @@
861861
<member name="interface/theme/icon_and_font_color" type="int" setter="" getter="">
862862
The icon and font color scheme to use in the editor.
863863
- [b]Auto[/b] determines the color scheme to use automatically based on [member interface/theme/base_color].
864-
- [b]Dark[/b] makes fonts and icons dark (suitable for light themes). Icon colors are automatically converted by the editor following the set of rules defined in [url=https://github.com/godotengine/godot/blob/master/editor/themes/editor_theme_manager.cpp]this file[/url].
864+
- [b]Dark[/b] makes fonts and icons dark (suitable for light themes). Icon colors are automatically converted by the editor following the set of rules defined in [url=https://github.com/Redot-Engine/redot-engine/blob/master/editor/themes/editor_theme_manager.cpp]this file[/url].
865865
- [b]Light[/b] makes fonts and icons light (suitable for dark themes).
866866
</member>
867867
<member name="interface/theme/icon_saturation" type="float" setter="" getter="">
@@ -923,7 +923,7 @@
923923
[b]Note:[/b] Redot currently doesn't automatically use system proxy settings, so you have to enter them manually here if needed.
924924
</member>
925925
<member name="network/tls/editor_tls_certificates" type="String" setter="" getter="">
926-
The TLS certificate bundle to use for HTTP requests made within the editor (e.g. from the AssetLib tab). If left empty, the [url=https://github.com/godotengine/godot/blob/master/thirdparty/certs/ca-certificates.crt]included Mozilla certificate bundle[/url] will be used.
926+
The TLS certificate bundle to use for HTTP requests made within the editor (e.g. from the AssetLib tab). If left empty, the [url=https://github.com/Redot-Engine/redot-engine/blob/master/thirdparty/certs/ca-certificates.crt]included Mozilla certificate bundle[/url] will be used.
927927
</member>
928928
<member name="project_manager/default_renderer" type="String" setter="" getter="">
929929
The renderer type that will be checked off by default when creating a new project. Accepted strings are "forward_plus", "mobile" or "gl_compatibility".

doc/classes/Node3D.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
</description>
1212
<tutorials>
1313
<link title="Introduction to 3D">$DOCS_URL/tutorials/3d/introduction_to_3d.html</link>
14-
<link title="All 3D Demos">https://github.com/godotengine/godot-demo-projects/tree/master/3d</link>
14+
<link title="All 3D Demos">https://github.com/Redot-Engine/redot-demo-projects/tree/master/3d</link>
1515
</tutorials>
1616
<methods>
1717
<method name="add_gizmo">

doc/classes/Tween.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@
8888
[/csharp]
8989
[/codeblocks]
9090
Some [Tweener]s use transitions and eases. The first accepts a [enum TransitionType] constant, and refers to the way the timing of the animation is handled (see [url=https://easings.net/]easings.net[/url] for some examples). The second accepts an [enum EaseType] constant, and controls where the [code]trans_type[/code] is applied to the interpolation (in the beginning, the end, or both). If you don't know which transition and easing to pick, you can try different [enum TransitionType] constants with [constant EASE_IN_OUT], and use the one that looks best.
91-
[url=https://raw.githubusercontent.com/godotengine/godot-docs/master/img/tween_cheatsheet.webp]Tween easing and transition types cheatsheet[/url]
91+
[url=https://raw.githubusercontent.com/Redot-Engine/redot-docs/master/img/tween_cheatsheet.webp]Tween easing and transition types cheatsheet[/url]
9292
[b]Note:[/b] Tweens are not designed to be re-used and trying to do so results in an undefined behavior. Create a new Tween for each animation and every time you replay an animation from start. Keep in mind that Tweens start immediately, so only create a Tween when you want to start animating.
9393
[b]Note:[/b] The tween is processed after all of the nodes in the current frame, i.e. node's [method Node._process] method would be called before the tween (or [method Node._physics_process] depending on the value passed to [method set_process_mode]).
9494
</description>

doc/tools/make_rst.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
# Used to translate section headings and other hardcoded strings when required with
2727
# the --lang argument. The BASE_STRINGS list should be synced with what we actually
2828
# write in this script (check `translate()` uses), and also hardcoded in
29-
# `scripts/extract_classes.py` (godotengine/godot-editor-l10n repo) to include them in the source POT file.
29+
# `scripts/extract_classes.py` (redot-engine/redot-editor-l10n repo) to include them in the source POT file.
3030
BASE_STRINGS = [
3131
"All classes",
3232
"Globals",
@@ -1751,7 +1751,7 @@ def make_rst_index(grouped_classes: Dict[str, List[str]], dry_run: bool, output_
17511751
# Also provide links to the source files for reference.
17521752

17531753
git_branch = get_git_branch()
1754-
generator_github_url = f"https://github.com/godotengine/godot/tree/{git_branch}/doc/tools/make_rst.py"
1754+
generator_github_url = f"https://github.com/redot-engine/redot-engine/tree/{git_branch}/doc/tools/make_rst.py"
17551755

17561756
f.write(".. DO NOT EDIT THIS FILE!!!\n")
17571757
f.write(".. Generated automatically from Redot engine sources.\n")

doc/translations/de.po

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2534,7 +2534,7 @@ msgid ""
25342534
"- 1.0: Linear\n"
25352535
"- Greater than 1.0 (exclusive): Ease in\n"
25362536
"[/codeblock]\n"
2537-
"[url=https://raw.githubusercontent.com/godotengine/godot-docs/master/img/"
2537+
"[url=https://raw.githubusercontent.com/Redot-Engine/redot-docs/master/img/"
25382538
"ease_cheatsheet.png]ease() curve values cheatsheet[/url]\n"
25392539
"See also [method smoothstep]. If you need to perform more advanced "
25402540
"transitions, use [method Tween.interpolate_value]."
@@ -2553,7 +2553,7 @@ msgstr ""
25532553
"- 1.0: Linear\n"
25542554
"- Greater than 1.0 (exclusive): Ease in\n"
25552555
"[/codeblock]\n"
2556-
"[url=https://raw.githubusercontent.com/godotengine/godot-docs/master/img/"
2556+
"[url=https://raw.githubusercontent.com/Redot-Engine/redot-docs/master/img/"
25572557
"ease_cheatsheet.png]ease() curve values cheatsheet[/url]\n"
25582558
"Siehe auch [Methode smoothstep]. Wenn Sie komplexere Übergänge durchführen "
25592559
"möchten, verwenden Sie [method Tween.interpolate_value]."
@@ -4126,7 +4126,7 @@ msgid ""
41264126
"smoothstep] returns the smoothest possible curve with no sudden changes in "
41274127
"the derivative. If you need to perform more advanced transitions, use [Tween] "
41284128
"or [AnimationPlayer].\n"
4129-
"[url=https://raw.githubusercontent.com/godotengine/godot-docs/master/img/"
4129+
"[url=https://raw.githubusercontent.com/Redot-Engine/redot-docs/master/img/"
41304130
"smoothstep_ease_comparison.png]Comparison between smoothstep() and ease(x, "
41314131
"-1.6521) return values[/url]"
41324132
msgstr ""
@@ -4150,7 +4150,7 @@ msgstr ""
41504150
"liefert [method smoothstep] die glatteste Kurve ohne plötzliche Änderungen in "
41514151
"der Ableitung. Wenn Sie fortgeschrittenere Übergänge durchführen möchten, "
41524152
"verwenden Sie [Tween] oder [AnimationPlayer].\n"
4153-
"[url=https://raw.githubusercontent.com/godotengine/godot-docs/master/img/"
4153+
"[url=https://raw.githubusercontent.com/Redot-Engine/redot-docs/master/img/"
41544154
"smoothstep_ease_comparison.png]Vergleich zwischen den Rückgabewerten von "
41554155
"smoothstep() und ease(x, -1.6521)[/url]"
41564156

@@ -15625,11 +15625,11 @@ msgid ""
1562515625
"shadows, billboards will face [b]the[/b] camera in the scene when rendering "
1562615626
"shadows. In scenes with multiple cameras, the intended shadow cannot be "
1562715627
"determined and this will result in undefined behavior. See [url=https://"
15628-
"github.com/godotengine/godot/pull/72638]GitHub Pull Request #72638[/url] for "
15628+
"github.com/Redot-Engine/redot-docs/pull/72638]GitHub Pull Request #72638[/url] for "
1562915629
"details.\n"
1563015630
"[b]Note:[/b] Billboard mode is not suitable for VR because the left-right "
1563115631
"vector of the camera is not horizontal when the screen is attached to your "
15632-
"head instead of on the table. See [url=https://github.com/godotengine/godot/"
15632+
"head instead of on the table. See [url=https://github.com/Redot-Engine/redot-docs/"
1563315633
"issues/41567]GitHub issue #41567[/url] for details."
1563415634
msgstr ""
1563515635
"Kontrolliert, wie das Objekt der Kamera zugewandt ist. Siehe [enum "
@@ -15638,12 +15638,12 @@ msgstr ""
1563815638
"Schatten wirft, zeigen Billboards beim Rendern von Schatten auf [b]die[/b] "
1563915639
"Kamera in der Szene. In Szenen mit mehreren Kameras kann der beabsichtigte "
1564015640
"Schatten nicht bestimmt werden, was zu einem undefinierten Verhalten führt. "
15641-
"Siehe [url=https://github.com/godotengine/godot/pull/72638]GitHub Pull-"
15641+
"Siehe [url=https://github.com/Redot-Engine/redot-docs/pull/72638]GitHub Pull-"
1564215642
"Request #72638[/url] für Details.\n"
1564315643
"[b]Hinweis:[/b] Billboard-Modus ist nicht für VR geeignet, da der links-"
1564415644
"rechts Vektor der Kamera nicht horizontal ist, wenn der Bildschirm statt auf "
1564515645
"dem Tisch an Ihrem Kopf angebracht ist. Siehe [url=https://github.com/"
15646-
"godotengine/godot/issues/41567]GitHub Issue #41567[/url] für Details."
15646+
"Redot-Engine/redot-docs/issues/41567]GitHub Issue #41567[/url] für Details."
1564715647

1564815648
msgid ""
1564915649
"The material's blend mode.\n"

0 commit comments

Comments
 (0)