You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// This code is part of the Fungus library (https://github.com/snozbot/fungus)
2
+
// It is released for free under the MIT open source license (https://github.com/snozbot/fungus/blob/master/LICENSE)
3
+
4
+
usingUnityEngine;
5
+
usingUnityEngine.UI;
6
+
usingUnityEngine.Serialization;
7
+
usingSystem.Collections;
8
+
usingSystem.Collections.Generic;
9
+
10
+
namespaceFungus
11
+
{
12
+
/// <summary>
13
+
/// Waits for period of time before executing the next command in the block.
14
+
/// </summary>
15
+
[CommandInfo("Flow",
16
+
"Pause flowchart Until Condition",
17
+
"Waits for period of time before executing the next command in the block. This also mean, you can execute blocks in parallel, while waiting. FYI, this a single instance command")]
0 commit comments