ScreenToWorld: Difference between revisions
From Onset Developer Wiki
No edit summary |
No edit summary |
||
Line 22: | Line 22: | ||
{{RelatedFunctions}} | {{RelatedFunctions}} | ||
* [[WorldToScreen]] |
Latest revision as of 11:26, 1 September 2020
Description
Deprojects a 2D screen space into 3D world space.
Syntax
ScreenToWorld(x, y)
Parameters
- x
Screen X coordinate. - y
Screen Y coordinate.
Return Values
- bResult: True on success, False on error.
- X: World space X coordinate.
- Y: World space Y coordinate.
- Z: World space Z coordinate.
- DirectionX: World space direction X coordinate away from the camera at the given 2d point.
- DirectionY: World space direction Y coordinate away from the camera at the given 2d point.
- DirectionZ: World space direction Z coordinate away from the camera at the given 2d point.
Example
__EDIT_ME__