Camera::getCoord: Difference between revisions

From RAGE Multiplayer Wiki
mNo edit summary
Line 7: Line 7:
==Example==
==Example==
<syntaxhighlight lang="javascript">
<syntaxhighlight lang="javascript">
// todo
function pointingAt(distance) {
    const camera = mp.cameras.new("gameplay"); // gets the current gameplay camera
 
    let position = camera.getCoord(); // grab the position of the gameplay camera as Vector3
 
    let direction = camera.getDirection(); // get the forwarding vector of the direction you aim with the gameplay camera as Vector3
 
    let farAway = new mp.Vector3((direction.x * distance) + (position.x), (direction.y * distance) + (position.y), (direction.z * distance) + (position.z)); // calculate a random point, drawn on a invisible line between camera position and direction (* distance)
 
    let result = mp.raycasting.testPointToPoint(position, farAway, [1, 16]); // now test point to point
 
    return result; // and return the result ( undefined, if no hit )
}
</syntaxhighlight>
</syntaxhighlight>
==See also==
==See also==
{{Camera_definition_c}}
{{Camera_definition_c}}
[[Category:Clientside API]]
[[Category:Clientside API]]
[[Category:TODO: Example]]
[[Category:TODO: Example]]

Revision as of 14:53, 19 December 2018

Syntax

camera.getCoord();

Required Arguments

Return value

  • Vector3

Example

function pointingAt(distance) {
    const camera = mp.cameras.new("gameplay"); // gets the current gameplay camera

    let position = camera.getCoord(); // grab the position of the gameplay camera as Vector3

    let direction = camera.getDirection(); // get the forwarding vector of the direction you aim with the gameplay camera as Vector3

    let farAway = new mp.Vector3((direction.x * distance) + (position.x), (direction.y * distance) + (position.y), (direction.z * distance) + (position.z)); // calculate a random point, drawn on a invisible line between camera position and direction (* distance)

    let result = mp.raycasting.testPointToPoint(position, farAway, [1, 16]); // now test point to point

    return result; // and return the result ( undefined, if no hit )
}

See also