Thanks a lot for your positive feedback on FlowCanvas.
Unfortunately (at least right now), IEnumerator methods are not automatically treated as Coroutines by FlowCanvas. There is however a way to invoke coroutines as you would normally do in code, meaning by using a “StartCoroutine” function node like for example:
In the example above however, the Log “OK” node, will be executed in the same frame when the event is called, while the coroutine will continue “running” in the background, which I suppose is not exactly what you would ideally want.
With that said, another more proper solution for running coroutines -for now- within a flowScript, would be to actually create custom “LatentAction” nodes, in case the functionality of what you want to do, is not shared with your own codebase as well, but rather only used within the scope of FlowCanvas. Creating a LatentAction node (which basically means a coroutine node), is quite easy as well. If you open up the file named “Time.cs”, you will find a couple of LatentActionNodes (like Wait, WaitUntil, WaitWhile etc) and see how they are implemented as a base for creating your own.
Please let me know if the above works for you, or if of course you have any questions.
Thanks again!
Join us on Discord: https://discord.gg/97q2Rjh
Attachments:
InvokeCorutine.png
Login
Register
By registering on this website you agree to our Privacy Policy.