Reply To: While True node do not do anything?. . .

FlowCanvas Forums Support While True node do not do anything?. . . Reply To: While True node do not do anything?. . .

#1646
proepkes
Participant

I noticed it too. My hotfix was to change “While.cs” line 38 from

while (coroutine != null && condition.value)

to

while (condition.value)

because coroutine was always null