Merge pull request #264 from frosty-dev/upstream-core

Upstream core
This commit is contained in:
BIGZi0348
2025-03-01 08:04:42 +03:00
committed by GitHub
6 changed files with 29 additions and 58 deletions

View File

@@ -36,13 +36,13 @@ public abstract class SharedHumanoidAppearanceSystem : EntitySystem
public const string DefaultBodyType = "HumanNormal";
[ValidatePrototypeId<TTSVoicePrototype>]
public const string DefaultVoice = "Eugene";
public const string DefaultVoice = "Nord";
public static readonly Dictionary<Sex, ProtoId<TTSVoicePrototype>> DefaultSexVoice = new()
{
{ Sex.Male, "Eugene" },
{ Sex.Female, "Kseniya" },
{ Sex.Unsexed, "Xenia" },
{ Sex.Male, "Nord" },
{ Sex.Female, "Amina" },
{ Sex.Unsexed, "Alyx" },
};
public override void Initialize()

View File

@@ -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; } = "Nord";
}