fixed typo in NavigationPolygon doc
(cherry picked from commit 30d22305e1
)
This commit is contained in:
parent
89cefee947
commit
0a2dadb639
|
@ -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]
|
||||
|
|
Loading…
Reference in New Issue