Forums › 💬 FlowCanvas › ⚙️ Support › How to pass reference value? › Reply To: How to pass reference value?
Hello,
If you make your public Action an event like so: public event Action OnMoveAction;, you will be able to subscribe to that event with the existing nodes like the “C# Event Callback”. Do you intentionally don’t want to make it an “event”?
public event Action OnMoveAction;
Let me know. Thank you.