summaryrefslogtreecommitdiffstats
path: root/doc/classes/NavigationPolygon.xml
diff options
context:
space:
mode:
authorboruok <burutarunootoko@gmail.com>2021-11-11 15:59:17 +0900
committerboruok <burutarunootoko@gmail.com>2021-11-11 15:59:17 +0900
commitff66df67fd340185edb46e194de3de82df780835 (patch)
treea06ce99b012011fb2c6298db16d92b6fff7bac9f /doc/classes/NavigationPolygon.xml
parent7211012c4f1a737a78436a55fd1c66d7e323b668 (diff)
downloadredot-engine-ff66df67fd340185edb46e194de3de82df780835.tar.gz
fixed typo in NavigationPolygon doc
Diffstat (limited to 'doc/classes/NavigationPolygon.xml')
-rw-r--r--doc/classes/NavigationPolygon.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/classes/NavigationPolygon.xml b/doc/classes/NavigationPolygon.xml
index 5b5b7c42ef..7ecdca8793 100644
--- a/doc/classes/NavigationPolygon.xml
+++ b/doc/classes/NavigationPolygon.xml
@@ -28,7 +28,7 @@
var polygon = NavigationPolygon.new()
var vertices = PackedVector2Array([Vector2(0, 0), Vector2(0, 50), Vector2(50, 50), Vector2(50, 0)])
polygon.vertices = vertices
- var indices = PackedInt32Array(0, 3, 1)
+ var indices = PackedInt32Array([0, 1, 2, 3])
polygon.add_polygon(indices)
$NavigationRegion2D.navpoly = polygon
[/gdscript]
@@ -36,7 +36,7 @@
var polygon = new NavigationPolygon();
var vertices = new Vector2[] { new Vector2(0, 0), new Vector2(0, 50), new Vector2(50, 50), new Vector2(50, 0) };
polygon.Vertices = vertices;
- var indices = new int[] { 0, 3, 1 };
+ var indices = new int[] { 0, 1, 2, 3 };
polygon.AddPolygon(indices);
GetNode&lt;NavigationRegion2D&gt;("NavigationRegion2D").Navpoly = polygon;
[/csharp]