CreateColPolygon: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 21: Line 21:
==Example==  
==Example==  
<section name="Server" class="server" show="true">
<section name="Server" class="server" show="true">
To Do.
<syntaxhighlight lang="lua" lang="lua">--To Do.</syntaxhighlight>
</section>
<section name="Client" class="client" show="true">
<syntaxhighlight lang="lua" lang="lua">--To Do.</syntaxhighlight>
</section>
</section>


==See Also==
==See Also==
{{Collision shape functions}}
{{Collision shape functions}}

Revision as of 18:07, 29 December 2008

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. There 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
  • ... From the 3rd position you can have as many points as you require to create the colshape.

Returns

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

Example

Click to collapse [-]
Server
--To Do.
Click to collapse [-]
Client
--To Do.

See Also