1
0
mirror of https://github.com/godotengine/godot.git synced 2026-01-05 19:31:35 +00:00

Revert incorrect Rect2.expand description.

Also affects Rect2i of course.
This commit is contained in:
Micky
2023-08-03 14:59:07 +02:00
parent 237bd0a615
commit f17d3a66fe
2 changed files with 2 additions and 2 deletions

View File

@@ -83,7 +83,7 @@
<return type="Rect2" />
<param index="0" name="to" type="Vector2" />
<description>
Returns a copy of this rectangle expanded to include the given [param to] point, if necessary.
Returns a copy of this rectangle expanded to align the edges with the given [param to] point, if necessary.
[codeblocks]
[gdscript]
var rect = Rect2(0, 0, 5, 2)

View File

@@ -82,7 +82,7 @@
<return type="Rect2i" />
<param index="0" name="to" type="Vector2i" />
<description>
Returns a copy of this rectangle expanded to include the given [param to] point, if necessary.
Returns a copy of this rectangle expanded to align the edges with the given [param to] point, if necessary.
[codeblocks]
[gdscript]
var rect = Rect2i(0, 0, 5, 2)