What's the "event.position" equivalent in 3D?

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By Suleymanov

How can I get the event.position in 3D?

func _input(event):	
    if event is InputEventScreenTouch:
        var px = event.position.x
        var pz = event.position.z

is all I need

:bust_in_silhouette: Reply From: Wakatta

Related