CreateColCuboid

From Multi Theft Auto: Wiki
Revision as of 18:03, 29 December 2008 by BrophY (talk | contribs)
Jump to navigation Jump to search

This function creates a collision polygon. See Wikipedia for a definition of a polygon. The first set of X Y of this shape is not part of the colshape bounds, so can set anywhere in the game world, however for performance, place it somewhere within the polygon. It should be noted this shape is 2D. You should be at least 3+ bound points set.

Syntax

colshape createColPolygon ( float fX, float fY, float fX1, float fX2, float fX3, ... )

Required Arguments

  • fX: The X position of the collision polygon's dummy point
  • fY: The Y position of the collision polygon's dummy point
  • fX1: The 1st position of the collision polygon's bound point
  • fX2: The 2st position of the collision polygon's bound point
  • fX3: The 3st position of the collision polygon's bound point

Returns

Returns a colshape element if successful, false if invalid arguments were passed to the function.

Example

Click to collapse [-]
Server

To Do.

See Also