Fixes type of array in _set_outlines function
This commit is contained in:
parent
316b60aa68
commit
4af274756f
2 changed files with 2 additions and 2 deletions
|
@ -118,7 +118,7 @@ Array NavigationPolygon::_get_polygons() const {
|
|||
return ret;
|
||||
}
|
||||
|
||||
void NavigationPolygon::_set_outlines(const TypedArray<Vector<int32_t>> &p_array) {
|
||||
void NavigationPolygon::_set_outlines(const TypedArray<Vector<Vector2>> &p_array) {
|
||||
|
||||
outlines.resize(p_array.size());
|
||||
for (int i = 0; i < p_array.size(); i++) {
|
||||
|
|
|
@ -58,7 +58,7 @@ protected:
|
|||
void _set_polygons(const TypedArray<Vector<int32_t>> &p_array);
|
||||
Array _get_polygons() const;
|
||||
|
||||
void _set_outlines(const TypedArray<Vector<int32_t>> &p_array);
|
||||
void _set_outlines(const TypedArray<Vector<Vector2>> &p_array);
|
||||
Array _get_outlines() const;
|
||||
|
||||
public:
|
||||
|
|
Loading…
Reference in a new issue