|
@@ -111,7 +111,7 @@ Use `AllCondition` to require multiple keys at the same time.
|
|
```csharp
|
|
```csharp
|
|
ICondition run =
|
|
ICondition run =
|
|
new AllCondition(
|
|
new AllCondition(
|
|
- new KeyboardCondition(Keys.Shift),
|
|
|
|
|
|
+ new KeyboardCondition(Keys.LeftShift),
|
|
new KeyboardCondition(Keys.Right)
|
|
new KeyboardCondition(Keys.Right)
|
|
);
|
|
);
|
|
|
|
|
|
@@ -154,7 +154,7 @@ An issue arises where `walk` will trigger during the `run` since both need the `
|
|
```csharp
|
|
```csharp
|
|
ICondition run =
|
|
ICondition run =
|
|
new AllCondition(
|
|
new AllCondition(
|
|
- new KeyboardCondition(Keys.Shift),
|
|
|
|
|
|
+ new KeyboardCondition(Keys.LeftShift),
|
|
new Track.KeyboardCondition(Keys.Right)
|
|
new Track.KeyboardCondition(Keys.Right)
|
|
);
|
|
);
|
|
ICondition walk = new Track.KeyboardCondition(Keys.Right);
|
|
ICondition walk = new Track.KeyboardCondition(Keys.Right);
|