We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d793785 commit f20e739Copy full SHA for f20e739
Src/Decorators/Init.cs
@@ -14,7 +14,7 @@ public class Init : AbstractDecorator{
14
static int uid; internal static int id => uid = ID(uid);
15
internal static Init[] stack = new Init[128];
16
internal static int stackIndex = -1;
17
- public bool passing = true;
+ internal bool passing = true;
18
int frame;
19
20
// NOTE: unlike other decorators, it appears that the entry
Src/Decorators/Latch.cs
@@ -7,7 +7,7 @@ namespace Active.Core{
7
public class Latch : Conditional{
8
9
10
- public bool passing;
+ internal bool passing;
11
12
13
public Gate? this[bool cond]{ get{
0 commit comments