Hello, does anyone know why this doesnt work? If i remove the top path the bottom one executes properly, but if both are connected the bottom one stops before AI Node 2. I dont get why this happens. Ive already tried putting a switch directy after AI Node 1 but it still stops before AI Node 2.
Im really thankful for any answer or tip or anything. Thank yall in advance
When you output 2 branches in one single node, then the top branch must execute completely with all the nodes in the top branch and once that is done successfully only then the nodes on the bottom branch will start executing, and this is because nodes in both the branches connected to one single node cannot be executed simultaneously as that will create conflict in the final output. Let me know if this helps!