Merge pull request #54862 from boruok/3.x-fix-navigationpolygon-doc
This commit is contained in:
commit
0529813cf2
1 changed files with 1 additions and 1 deletions
|
@ -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 a new issue