Hi. Is there any tip about concurrent state’s performance?(aka Parallel state) I think this is a convenient feature but It worries me about if there are any bad performance effect If I use too many of them in one graph. (because it will add another ‘update’ routine, I think.)
Is there any ‘maximum’ or ‘recommended’ number of parallel node, or any tips on using them?
There arent any tips here really 🙂 Every Parallel node is updated per frame while it is running of course. Their update loop per-se is only as performance heavy as the conditions it checks or the actions it performs. Also note that a Parallel node that has finished (not set to Repeat) will not have any impact.
In the end, I think that you should use as many as you think are required to achieve what you are after 🙂