Skip to content

Commit

Permalink
Добавил поля для YAML файлов.
Browse files Browse the repository at this point in the history
  • Loading branch information
Schrodinger71 committed Jun 17, 2024
1 parent 3563f18 commit f548521
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,26 +11,28 @@ public sealed partial class AutoPostingChatComponent : Component
/// Whether this destination is shown in the gateway ui.
/// If you are making a gateway for an admeme set this once you are ready for players to select it.
/// </summary>
[DataField, ViewVariables(VVAccess.ReadWrite)]
[DataField("randomIntervalSpeak"), ViewVariables(VVAccess.ReadWrite)]
public bool RandomIntervalSpeak = false;

/// <summary>
/// Whether this destination is shown in the gateway ui.
/// If you are making a gateway for an admeme set this once you are ready for players to select it.
/// </summary>
[DataField, ViewVariables(VVAccess.ReadWrite)]
[DataField("randomIntervalEmote"), ViewVariables(VVAccess.ReadWrite)]
public bool RandomIntervalEmote = false;

/// <summary>
/// The interval in milliseconds between automatic speech messages.
/// </summary>
[ViewVariables(VVAccess.ReadWrite)]
[DataField("speakTimer")]
public int SpeakTimerRead = 8000;

/// <summary>
/// The interval in milliseconds between automatic emote messages.
/// </summary>
[ViewVariables(VVAccess.ReadWrite)]
[DataField("emoteTimer")]
public int EmoteTimerRead = 9000;

/// <summary>
Expand Down

0 comments on commit f548521

Please sign in to comment.