Ah, now I understand. The problem you are having is with the Execute Function task executing a coroutine.
This is a bug indeed that only recently found out. Here is the fix for Execute Function:
Open ExecuteFunction.cs and at line #92 you should see that the EndAction() is called.
Simply move the EndAction call within the bracket just above(within the ‘else’).
From this:
1
2
3
4
5
6
}
}
EndAction();
}
To this:
1
2
3
4
5
6
}
EndAction();
}
}
Thanks. Let me know.
Join us on Discord: https://discord.gg/97q2Rjh
Login
Register
By registering on this website you agree to our Privacy Policy.