Remove voices
This commit is contained in:
@@ -33,13 +33,13 @@ public abstract class SharedHumanoidAppearanceSystem : EntitySystem
|
||||
public const string DefaultBodyType = "HumanNormal";
|
||||
|
||||
[ValidatePrototypeId<TTSVoicePrototype>]
|
||||
public const string DefaultVoice = "Eugene";
|
||||
public const string DefaultVoice = "Mykyta";
|
||||
|
||||
public static readonly Dictionary<Sex, ProtoId<TTSVoicePrototype>> DefaultSexVoice = new()
|
||||
{
|
||||
{ Sex.Male, "Eugene" },
|
||||
{ Sex.Female, "Kseniya" },
|
||||
{ Sex.Unsexed, "Xenia" },
|
||||
{ Sex.Male, "Mykyta" },
|
||||
{ Sex.Female, "Charlotte" },
|
||||
{ Sex.Unsexed, "Glados" },
|
||||
};
|
||||
|
||||
public override void Initialize()
|
||||
|
||||
@@ -14,5 +14,5 @@ public sealed partial class SharedTTSComponent : Component
|
||||
/// Prototype of used voice for TTS.
|
||||
/// </summary>
|
||||
[ViewVariables(VVAccess.ReadWrite), DataField, AutoNetworkedField]
|
||||
public ProtoId<TTSVoicePrototype> VoicePrototypeId { get; set; } = "Eugene";
|
||||
public ProtoId<TTSVoicePrototype> VoicePrototypeId { get; set; } = "Mykyta";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user