fixed typo in NavigationPolygon doc

(cherry picked from commit 30d22305e1)
This commit is contained in:
boruok 2021-11-11 14:29:19 +09:00 committed by Rémi Verschelde
parent 89cefee947
commit 0a2dadb639
No known key found for this signature in database
GPG Key ID: C3336907360768E1
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@
var polygon = NavigationPolygon.new()
var vertices = PoolVector2Array([Vector2(0, 0), Vector2(0, 50), Vector2(50, 50), Vector2(50, 0)])
polygon.set_vertices(vertices)
var indices = PoolIntArray(0, 3, 1)
var indices = PoolIntArray([0, 1, 2, 3])
polygon.add_polygon(indices)
$NavigationPolygonInstance.navpoly = polygon
[/codeblock]