Remove superseded contributor material

This commit is contained in:
Alexander Sellite 2026-08-21 16:39:33 -04:00
parent b2752b1074
commit f45550e46b
165 changed files with 155 additions and 2158 deletions

View file

@ -7,7 +7,7 @@ readonly OUTPUT_SAMPLE_RATE="48000"
usage() {
printf 'usage: %s SOURCE_DIRECTORY SAMPLE_SET_DIRECTORY\n' "$0" >&2
printf 'example: %s /path/to/voice_kim kim\n' "$0" >&2
printf 'example: %s /path/to/voice_clips custom_voice\n' "$0" >&2
}
if (( $# != 2 )); then

View file

@ -15,7 +15,7 @@ readonly -a QUICK_TESTS=(
"tests/android_readiness_validation.gd"
"tests/camera_drag_validation.gd"
"tests/character_rig_validation.gd"
"tests/chat_validation.gd"
"tests/network_chat_protocol_validation.gd"
"tests/controller_focus_presentation_validation.gd"
"tests/controller_menu_accessibility_validation.gd"
"tests/controller_mapping_validation.gd"

View file

@ -16,20 +16,14 @@ func _initialize() -> void:
"animalese supports every letter and digit",
)
_expect(
VoiceProfilesType.DEFAULT_SAMPLE_SET_ID == "kat",
"kat is the default animalese voice set",
VoiceProfilesType.DEFAULT_SAMPLE_SET_ID == "robot",
"robot is the default animalese voice set",
)
_expect(
VoiceProfilesType.is_valid_sample_set("robot"),
"the original tones remain available as robot",
)
_expect(
VoiceProfilesType.is_valid_sample_set("kim"),
"kim is available as an animalese voice set",
)
_validate_set("kat", EXPECTED_CHARACTERS, false)
_validate_set("robot", ROBOT_CHARACTERS, true)
_validate_set("kim", EXPECTED_CHARACTERS, false)
if _failures.is_empty():
print("Animalese sample validation: PASS")
quit(0)