diff --git a/ProjectObsidian/ProtoFlux/Flow/AsyncWait.cs b/ProjectObsidian/ProtoFlux/Flow/AsyncWait.cs index acc225a..5c3b086 100644 --- a/ProjectObsidian/ProtoFlux/Flow/AsyncWait.cs +++ b/ProjectObsidian/ProtoFlux/Flow/AsyncWait.cs @@ -1,5 +1,6 @@ using System; using System.Threading.Tasks; +using FrooxEngine; using ProtoFlux.Core; using ProtoFlux.Runtimes.Execution; namespace ProtoFlux.Runtimes.Execution.Nodes.Obsidian.Flow @@ -40,10 +41,11 @@ protected override async Task RunAsync(ExecutionContext context) { throw new ExecutionAbortedException(base.Runtime as IExecutionRuntime, this, TimedOut.Target, isAsync: true); } + + await default(NextUpdate); } return OnDone.Target; } } -} - +} \ No newline at end of file