Reply To: custom function set value in parameter

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

#21944
xavioromi
Participant

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