TestLineAgainstWater: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
mNo edit summary
Line 1: Line 1:
__NOTOC__
__NOTOC__
{{Needs_Example}}
{{Client function}}
{{Client function}}
This function checks to see if a line between two points collides with the water. This is similar to [[processLineOfSight]], but only collides with water. Waves are taken into account when testing the line.
This function checks to see if a line between two points collides with the water. This is similar to [[processLineOfSight]], but only collides with water. Waves are taken into account when testing the line.

Revision as of 20:17, 21 January 2014


Accessories-text-editor.png Script Example Missing Function TestLineAgainstWater needs a script example, help out by writing one.

Before submitting check out Editing Guidelines Script Examples.

This function checks to see if a line between two points collides with the water. This is similar to processLineOfSight, but only collides with water. Waves are taken into account when testing the line.

Syntax

bool float float float testLineAgainstWater ( float startX, float startY, float startZ, float endX, float endY, float endZ )

Required Arguments

  • startX, startY, startZ: the position of the starting point of the line
  • endX, endY, endZ: the position of the end point of the line

Returns

Returns true and the position of the intersection point of the line and the water surface if there is a collision, or false if there is no collision.

See Also