-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
287 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
namespace OpenShock.ShockOsc.Config; | ||
|
||
public sealed class Group | ||
{ | ||
public required string Name { get; set; } | ||
public IList<Guid> Shockers { get; set; } = new List<Guid>(); | ||
|
||
public bool OverrideIntensity { get; set; } | ||
|
||
public bool RandomIntensity { get; set; } | ||
public JsonRange IntensityRange { get; set; } = new JsonRange { Min = 1, Max = 30 }; | ||
public byte FixedIntensity { get; set; } = 50; | ||
|
||
public bool OverrideDuration { get; set; } | ||
public bool RandomDuration { get; set; } | ||
public uint RandomDurationStep { get; set; } = 1000; | ||
public JsonRange DurationRange { get; set; } = new JsonRange { Min = 1000, Max = 5000 }; | ||
public uint FixedDuration { get; set; } = 2000; | ||
|
||
public bool OverrideCooldownTime { get; set; } | ||
public uint CooldownTime { get; set; } = 5000; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
@typeparam T | ||
|
||
<MudSlider Size="@Size" Style="@Style" @bind-Value="ValueProp">@ChildContent</MudSlider> | ||
<MudSlider Size="@Size" Class="@Class" Style="@Style" Min="@Min" Max="@Max" Step="@Step" @bind-Value="ValueProp">@ChildContent</MudSlider> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.