diff options
author | Joseph Catrambone <jo.jcat@gmail.com> | 2019-02-19 20:03:40 -0800 |
---|---|---|
committer | Joseph Catrambone <jo.jcat@gmail.com> | 2019-02-19 20:03:40 -0800 |
commit | ec94370053f1a5b46a05172b0aea7b2311578a7d (patch) | |
tree | 8cf8e8ed4489791b2b3f01864765d742d4b2f72b /doc/classes/Polygon2D.xml | |
parent | 1174d10e3c8f84e15dd6c5e795b5a6679c64c59c (diff) | |
download | redot-engine-ec94370053f1a5b46a05172b0aea7b2311578a7d.tar.gz |
Add warnings to docs for methods that return copies, not refs.
Diffstat (limited to 'doc/classes/Polygon2D.xml')
-rw-r--r-- | doc/classes/Polygon2D.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/classes/Polygon2D.xml b/doc/classes/Polygon2D.xml index 9803837e5d..31ee0a9490 100644 --- a/doc/classes/Polygon2D.xml +++ b/doc/classes/Polygon2D.xml @@ -99,7 +99,7 @@ The offset applied to each vertex. </member> <member name="polygon" type="PoolVector2Array" setter="set_polygon" getter="get_polygon"> - The polygon's list of vertices. The final point will be connected to the first. + The polygon's list of vertices. The final point will be connected to the first. Note that this returns a copy of the [PoolVector2Array] rather than a reference. </member> <member name="polygons" type="Array" setter="set_polygons" getter="get_polygons"> </member> |