Reply To: custom function set value in parameter

FlowCanvas Forums Support custom function set value in parameter Reply To: custom function set value in parameter

#1798
Lolitowww
Participant

More info: i want to replicate this code:
private Vector3 MouseInWorldCoords()
{
var screenMousePos = Input.mousePosition;
screenMousePos.z = zDisplacement;
return Camera.main.ScreenToWorldPoint(screenMousePos);
}