feat: updated engine version to 4.4-rc1

This commit is contained in:
Sara 2025-02-23 14:38:14 +01:00
parent ee00efde1f
commit 21ba8e33af
5459 changed files with 1128836 additions and 198305 deletions

View file

@ -70,7 +70,7 @@
<description>
Multiplies each component of the [Color], including the alpha, by the given [float].
[codeblock]
print(1.5 * Color(0.5, 0.5, 0.5)) # Prints "(0.75, 0.75, 0.75, 1.5)"
print(1.5 * Color(0.5, 0.5, 0.5)) # Prints (0.75, 0.75, 0.75, 1.5)
[/codeblock]
</description>
</operator>
@ -87,7 +87,7 @@
<description>
Multiplies each component of the [Vector2] by the given [float].
[codeblock]
print(2.5 * Vector2(1, 3)) # Prints "(2.5, 7.5)"
print(2.5 * Vector2(1, 3)) # Prints (2.5, 7.5)
[/codeblock]
</description>
</operator>
@ -97,7 +97,7 @@
<description>
Multiplies each component of the [Vector2i] by the given [float]. Returns a [Vector2].
[codeblock]
print(0.9 * Vector2i(10, 15)) # Prints "(9, 13.5)"
print(0.9 * Vector2i(10, 15)) # Prints (9.0, 13.5)
[/codeblock]
</description>
</operator>
@ -114,7 +114,7 @@
<description>
Multiplies each component of the [Vector3i] by the given [float]. Returns a [Vector3].
[codeblock]
print(0.9 * Vector3i(10, 15, 20)) # Prints "(9, 13.5, 18)"
print(0.9 * Vector3i(10, 15, 20)) # Prints (9.0, 13.5, 18.0)
[/codeblock]
</description>
</operator>
@ -131,7 +131,7 @@
<description>
Multiplies each component of the [Vector4i] by the given [float]. Returns a [Vector4].
[codeblock]
print(0.9 * Vector4i(10, 15, 20, -10)) # Prints "(9, 13.5, 18, -9)"
print(0.9 * Vector4i(10, 15, 20, -10)) # Prints (9.0, 13.5, 18.0, -9.0)
[/codeblock]
</description>
</operator>