AddColPolygonPoint

From Multi Theft Auto: Wiki
Revision as of 19:15, 5 July 2020 by Zangomangu (talk | contribs) (Created page with "{{Server client function}} __NOTOC__ {{New feature/item|3.0158|1.5.7|20397|This function is used to add a new point to an existing colshape polygon.}} ==...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

This function is used to add a new point to an existing colshape polygon.

Syntax

bool addColPolygonPoint ( colshape shape, float fX, float fY [, int index = 0 ] )  

OOP Syntax Help! I don't understand this!

Method: colshape:getSize(...)
Counterpart: setColShapeSize


Required Arguments

  • shape: The colshape polygon you wish add a point to.
  • fX: The X position of the new bound point.
  • fY: The Y position of the new bound point.

Optional Arguments

NOTE: When using optional arguments, you might need to supply all arguments before the one you wish to use. For more information on optional arguments, see optional arguments.

  • index: The 0-based index where the new point will be inserted in the polygon. The points are indexed in order, with 0 being the first bound point.

Returns

Returns true if the polygon was changed, false if invalid arguments were passed.

Example

TODO

See Also