├── .gitignore ├── .gitmodules ├── Assets ├── Materials.meta ├── Materials │ ├── Skybox_Mat.mat │ └── Skybox_Mat.mat.meta ├── Presets.meta ├── Presets │ ├── AudioCompressedInMemory.preset │ ├── AudioCompressedInMemory.preset.meta │ ├── AudioStreaming.preset │ ├── AudioStreaming.preset.meta │ ├── Defaults.meta │ ├── Defaults │ │ ├── AlbedoTexture_Default.preset │ │ ├── AlbedoTexture_Default.preset.meta │ │ ├── AudioDecompressOnLoad.preset │ │ ├── AudioDecompressOnLoad.preset.meta │ │ ├── DirectionalLight_Default.preset │ │ └── DirectionalLight_Default.preset.meta │ ├── NormalTexture.preset │ ├── NormalTexture.preset.meta │ ├── UtilityTexture.preset │ └── UtilityTexture.preset.meta ├── Samples.meta ├── Samples │ ├── VX Speech Engine.meta │ └── VX Speech Engine │ │ ├── 0.2.2.meta │ │ └── 0.2.2 │ │ ├── Speech Example.meta │ │ └── Speech Example │ │ ├── AudioClips.meta │ │ ├── Scripts.meta │ │ ├── Scripts │ │ ├── TTSDemo.cs │ │ └── TTSDemo.cs.meta │ │ ├── Speech.unity │ │ └── Speech.unity.meta ├── Scenes.meta ├── Scenes │ ├── SampleScene.unity │ ├── SampleScene.unity.meta │ ├── SampleSceneLightingSettings.lighting │ └── SampleSceneLightingSettings.lighting.meta ├── Scripts.meta ├── Scripts │ ├── MnistTest.cs │ ├── MnistTest.cs.meta │ ├── Numbers.shader │ ├── Numbers.shader.meta │ ├── Postprocess.compute │ ├── Postprocess.compute.meta │ ├── Preprocess.compute │ ├── Preprocess.compute.meta │ ├── SimpleCameraController.cs │ ├── SimpleCameraController.cs.meta │ ├── TextToSpeechTest.cs │ └── TextToSpeechTest.cs.meta ├── Settings.meta ├── Settings │ ├── ForwardRenderer.asset │ ├── ForwardRenderer.asset.meta │ ├── SampleSceneProfile.asset │ ├── SampleSceneProfile.asset.meta │ ├── UniversalRP-HighQuality.asset │ ├── UniversalRP-HighQuality.asset.meta │ ├── UniversalRP-LowQuality.asset │ ├── UniversalRP-LowQuality.asset.meta │ ├── UniversalRP-MediumQuality.asset │ └── UniversalRP-MediumQuality.asset.meta ├── StreamingAssets.meta ├── StreamingAssets │ └── Models.meta ├── TextMesh Pro.meta ├── TextMesh Pro │ ├── Documentation.meta │ ├── Documentation │ │ ├── TextMesh Pro User Guide 2016.pdf │ │ └── TextMesh Pro User Guide 2016.pdf.meta │ ├── Fonts.meta │ ├── Fonts │ │ ├── LiberationSans - OFL.txt │ │ ├── LiberationSans - OFL.txt.meta │ │ ├── LiberationSans.ttf │ │ └── LiberationSans.ttf.meta │ ├── Resources.meta │ ├── Resources │ │ ├── Fonts & Materials.meta │ │ ├── Fonts & Materials │ │ │ ├── LiberationSans SDF - Drop Shadow.mat │ │ │ ├── LiberationSans SDF - Drop Shadow.mat.meta │ │ │ ├── LiberationSans SDF - Fallback.asset │ │ │ ├── LiberationSans SDF - Fallback.asset.meta │ │ │ ├── LiberationSans SDF - Outline.mat │ │ │ ├── LiberationSans SDF - Outline.mat.meta │ │ │ ├── LiberationSans SDF.asset │ │ │ └── LiberationSans SDF.asset.meta │ │ ├── LineBreaking Following Characters.txt │ │ ├── LineBreaking Following Characters.txt.meta │ │ ├── LineBreaking Leading Characters.txt │ │ ├── LineBreaking Leading Characters.txt.meta │ │ ├── Sprite Assets.meta │ │ ├── Sprite Assets │ │ │ ├── EmojiOne.asset │ │ │ └── EmojiOne.asset.meta │ │ ├── Style Sheets.meta │ │ ├── Style Sheets │ │ │ ├── Default Style Sheet.asset │ │ │ └── Default Style Sheet.asset.meta │ │ ├── TMP Settings.asset │ │ └── TMP Settings.asset.meta │ ├── Shaders.meta │ ├── Shaders │ │ ├── TMP_Bitmap-Custom-Atlas.shader │ │ ├── TMP_Bitmap-Custom-Atlas.shader.meta │ │ ├── TMP_Bitmap-Mobile.shader │ │ ├── TMP_Bitmap-Mobile.shader.meta │ │ ├── TMP_Bitmap.shader │ │ ├── TMP_Bitmap.shader.meta │ │ ├── TMP_SDF Overlay.shader │ │ ├── TMP_SDF Overlay.shader.meta │ │ ├── TMP_SDF SSD.shader │ │ ├── TMP_SDF SSD.shader.meta │ │ ├── TMP_SDF-Mobile Masking.shader │ │ ├── TMP_SDF-Mobile Masking.shader.meta │ │ ├── TMP_SDF-Mobile Overlay.shader │ │ ├── TMP_SDF-Mobile Overlay.shader.meta │ │ ├── TMP_SDF-Mobile SSD.shader │ │ ├── TMP_SDF-Mobile SSD.shader.meta │ │ ├── TMP_SDF-Mobile.shader │ │ ├── TMP_SDF-Mobile.shader.meta │ │ ├── TMP_SDF-Surface-Mobile.shader │ │ ├── TMP_SDF-Surface-Mobile.shader.meta │ │ ├── TMP_SDF-Surface.shader │ │ ├── TMP_SDF-Surface.shader.meta │ │ ├── TMP_SDF.shader │ │ ├── TMP_SDF.shader.meta │ │ ├── TMP_Sprite.shader │ │ ├── TMP_Sprite.shader.meta │ │ ├── TMPro.cginc │ │ ├── TMPro.cginc.meta │ │ ├── TMPro_Mobile.cginc │ │ ├── TMPro_Mobile.cginc.meta │ │ ├── TMPro_Properties.cginc │ │ ├── TMPro_Properties.cginc.meta │ │ ├── TMPro_Surface.cginc │ │ └── TMPro_Surface.cginc.meta │ ├── Sprites.meta │ └── Sprites │ │ ├── EmojiOne Attribution.txt │ │ ├── EmojiOne Attribution.txt.meta │ │ ├── EmojiOne.json │ │ ├── EmojiOne.json.meta │ │ ├── EmojiOne.png │ │ └── EmojiOne.png.meta ├── UniversalRenderPipelineGlobalSettings.asset ├── UniversalRenderPipelineGlobalSettings.asset.meta ├── ljspeech_mapper.json └── ljspeech_mapper.json.meta ├── Packages ├── manifest.json └── packages-lock.json ├── ProjectSettings ├── AudioManager.asset ├── BurstAotSettings_StandaloneWindows.json ├── ClusterInputManager.asset ├── CommonBurstAotSettings.json ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── MemorySettings.asset ├── NavMeshAreas.asset ├── PackageManagerSettings.asset ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── SceneTemplateSettings.json ├── ShaderGraphSettings.asset ├── TagManager.asset ├── TimeManager.asset ├── URPProjectSettings.asset ├── UnityConnectSettings.asset ├── VFXManager.asset ├── VersionControlSettings.asset └── XRSettings.asset └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/.gitmodules -------------------------------------------------------------------------------- /Assets/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/Materials.meta -------------------------------------------------------------------------------- /Assets/Materials/Skybox_Mat.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/Materials/Skybox_Mat.mat -------------------------------------------------------------------------------- /Assets/Materials/Skybox_Mat.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/Materials/Skybox_Mat.mat.meta -------------------------------------------------------------------------------- /Assets/Presets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/Presets.meta -------------------------------------------------------------------------------- /Assets/Presets/AudioCompressedInMemory.preset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/Presets/AudioCompressedInMemory.preset -------------------------------------------------------------------------------- /Assets/Presets/AudioCompressedInMemory.preset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/Presets/AudioCompressedInMemory.preset.meta -------------------------------------------------------------------------------- /Assets/Presets/AudioStreaming.preset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/Presets/AudioStreaming.preset -------------------------------------------------------------------------------- /Assets/Presets/AudioStreaming.preset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/Presets/AudioStreaming.preset.meta -------------------------------------------------------------------------------- /Assets/Presets/Defaults.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/Presets/Defaults.meta -------------------------------------------------------------------------------- /Assets/Presets/Defaults/AlbedoTexture_Default.preset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/Presets/Defaults/AlbedoTexture_Default.preset -------------------------------------------------------------------------------- /Assets/Presets/Defaults/AlbedoTexture_Default.preset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/Presets/Defaults/AlbedoTexture_Default.preset.meta -------------------------------------------------------------------------------- /Assets/Presets/Defaults/AudioDecompressOnLoad.preset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/Presets/Defaults/AudioDecompressOnLoad.preset -------------------------------------------------------------------------------- /Assets/Presets/Defaults/AudioDecompressOnLoad.preset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/Presets/Defaults/AudioDecompressOnLoad.preset.meta -------------------------------------------------------------------------------- /Assets/Presets/Defaults/DirectionalLight_Default.preset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/Presets/Defaults/DirectionalLight_Default.preset -------------------------------------------------------------------------------- /Assets/Presets/Defaults/DirectionalLight_Default.preset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/Presets/Defaults/DirectionalLight_Default.preset.meta -------------------------------------------------------------------------------- /Assets/Presets/NormalTexture.preset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/Presets/NormalTexture.preset -------------------------------------------------------------------------------- /Assets/Presets/NormalTexture.preset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/Presets/NormalTexture.preset.meta -------------------------------------------------------------------------------- /Assets/Presets/UtilityTexture.preset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/Presets/UtilityTexture.preset -------------------------------------------------------------------------------- /Assets/Presets/UtilityTexture.preset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/Presets/UtilityTexture.preset.meta -------------------------------------------------------------------------------- /Assets/Samples.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/Samples.meta -------------------------------------------------------------------------------- /Assets/Samples/VX Speech Engine.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/Samples/VX Speech Engine.meta -------------------------------------------------------------------------------- /Assets/Samples/VX Speech Engine/0.2.2.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/Samples/VX Speech Engine/0.2.2.meta -------------------------------------------------------------------------------- /Assets/Samples/VX Speech Engine/0.2.2/Speech Example.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/Samples/VX Speech Engine/0.2.2/Speech Example.meta -------------------------------------------------------------------------------- /Assets/Samples/VX Speech Engine/0.2.2/Speech Example/AudioClips.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/Samples/VX Speech Engine/0.2.2/Speech Example/AudioClips.meta -------------------------------------------------------------------------------- /Assets/Samples/VX Speech Engine/0.2.2/Speech Example/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/Samples/VX Speech Engine/0.2.2/Speech Example/Scripts.meta -------------------------------------------------------------------------------- /Assets/Samples/VX Speech Engine/0.2.2/Speech Example/Scripts/TTSDemo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/Samples/VX Speech Engine/0.2.2/Speech Example/Scripts/TTSDemo.cs -------------------------------------------------------------------------------- /Assets/Samples/VX Speech Engine/0.2.2/Speech Example/Scripts/TTSDemo.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/Samples/VX Speech Engine/0.2.2/Speech Example/Scripts/TTSDemo.cs.meta -------------------------------------------------------------------------------- /Assets/Samples/VX Speech Engine/0.2.2/Speech Example/Speech.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/Samples/VX Speech Engine/0.2.2/Speech Example/Speech.unity -------------------------------------------------------------------------------- /Assets/Samples/VX Speech Engine/0.2.2/Speech Example/Speech.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/Samples/VX Speech Engine/0.2.2/Speech Example/Speech.unity.meta -------------------------------------------------------------------------------- /Assets/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/Scenes.meta -------------------------------------------------------------------------------- /Assets/Scenes/SampleScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/Scenes/SampleScene.unity -------------------------------------------------------------------------------- /Assets/Scenes/SampleScene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/Scenes/SampleScene.unity.meta -------------------------------------------------------------------------------- /Assets/Scenes/SampleSceneLightingSettings.lighting: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/Scenes/SampleSceneLightingSettings.lighting -------------------------------------------------------------------------------- /Assets/Scenes/SampleSceneLightingSettings.lighting.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/Scenes/SampleSceneLightingSettings.lighting.meta -------------------------------------------------------------------------------- /Assets/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/Scripts.meta -------------------------------------------------------------------------------- /Assets/Scripts/MnistTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/Scripts/MnistTest.cs -------------------------------------------------------------------------------- /Assets/Scripts/MnistTest.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/Scripts/MnistTest.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Numbers.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/Scripts/Numbers.shader -------------------------------------------------------------------------------- /Assets/Scripts/Numbers.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/Scripts/Numbers.shader.meta -------------------------------------------------------------------------------- /Assets/Scripts/Postprocess.compute: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/Scripts/Postprocess.compute -------------------------------------------------------------------------------- /Assets/Scripts/Postprocess.compute.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/Scripts/Postprocess.compute.meta -------------------------------------------------------------------------------- /Assets/Scripts/Preprocess.compute: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/Scripts/Preprocess.compute -------------------------------------------------------------------------------- /Assets/Scripts/Preprocess.compute.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/Scripts/Preprocess.compute.meta -------------------------------------------------------------------------------- /Assets/Scripts/SimpleCameraController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/Scripts/SimpleCameraController.cs -------------------------------------------------------------------------------- /Assets/Scripts/SimpleCameraController.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/Scripts/SimpleCameraController.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/TextToSpeechTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/Scripts/TextToSpeechTest.cs -------------------------------------------------------------------------------- /Assets/Scripts/TextToSpeechTest.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/Scripts/TextToSpeechTest.cs.meta -------------------------------------------------------------------------------- /Assets/Settings.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/Settings.meta -------------------------------------------------------------------------------- /Assets/Settings/ForwardRenderer.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/Settings/ForwardRenderer.asset -------------------------------------------------------------------------------- /Assets/Settings/ForwardRenderer.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/Settings/ForwardRenderer.asset.meta -------------------------------------------------------------------------------- /Assets/Settings/SampleSceneProfile.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/Settings/SampleSceneProfile.asset -------------------------------------------------------------------------------- /Assets/Settings/SampleSceneProfile.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/Settings/SampleSceneProfile.asset.meta -------------------------------------------------------------------------------- /Assets/Settings/UniversalRP-HighQuality.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/Settings/UniversalRP-HighQuality.asset -------------------------------------------------------------------------------- /Assets/Settings/UniversalRP-HighQuality.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/Settings/UniversalRP-HighQuality.asset.meta -------------------------------------------------------------------------------- /Assets/Settings/UniversalRP-LowQuality.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/Settings/UniversalRP-LowQuality.asset -------------------------------------------------------------------------------- /Assets/Settings/UniversalRP-LowQuality.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/Settings/UniversalRP-LowQuality.asset.meta -------------------------------------------------------------------------------- /Assets/Settings/UniversalRP-MediumQuality.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/Settings/UniversalRP-MediumQuality.asset -------------------------------------------------------------------------------- /Assets/Settings/UniversalRP-MediumQuality.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/Settings/UniversalRP-MediumQuality.asset.meta -------------------------------------------------------------------------------- /Assets/StreamingAssets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/StreamingAssets.meta -------------------------------------------------------------------------------- /Assets/StreamingAssets/Models.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/StreamingAssets/Models.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/TextMesh Pro.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Documentation.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/TextMesh Pro/Documentation.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Documentation/TextMesh Pro User Guide 2016.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/TextMesh Pro/Documentation/TextMesh Pro User Guide 2016.pdf -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Documentation/TextMesh Pro User Guide 2016.pdf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/TextMesh Pro/Documentation/TextMesh Pro User Guide 2016.pdf.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Fonts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/TextMesh Pro/Fonts.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Fonts/LiberationSans - OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/TextMesh Pro/Fonts/LiberationSans - OFL.txt -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Fonts/LiberationSans - OFL.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/TextMesh Pro/Fonts/LiberationSans - OFL.txt.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Fonts/LiberationSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/TextMesh Pro/Fonts/LiberationSans.ttf -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Fonts/LiberationSans.ttf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/TextMesh Pro/Fonts/LiberationSans.ttf.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/TextMesh Pro/Resources.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Fonts & Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/TextMesh Pro/Resources/Fonts & Materials.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Drop Shadow.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Drop Shadow.mat -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Drop Shadow.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Drop Shadow.mat.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Fallback.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Fallback.asset -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Fallback.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Fallback.asset.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Outline.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Outline.mat -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Outline.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Outline.mat.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF.asset -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF.asset.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/LineBreaking Following Characters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/TextMesh Pro/Resources/LineBreaking Following Characters.txt -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/LineBreaking Following Characters.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/TextMesh Pro/Resources/LineBreaking Following Characters.txt.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/LineBreaking Leading Characters.txt: -------------------------------------------------------------------------------- 1 | ([{〔〈《「『【〘〖〝‘“⦅«$—…‥〳〴〵\[({£¥"々〇$¥₩ # -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/LineBreaking Leading Characters.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/TextMesh Pro/Resources/LineBreaking Leading Characters.txt.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Sprite Assets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/TextMesh Pro/Resources/Sprite Assets.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Style Sheets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/TextMesh Pro/Resources/Style Sheets.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Style Sheets/Default Style Sheet.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/TextMesh Pro/Resources/Style Sheets/Default Style Sheet.asset -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/Style Sheets/Default Style Sheet.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/TextMesh Pro/Resources/Style Sheets/Default Style Sheet.asset.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/TMP Settings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/TextMesh Pro/Resources/TMP Settings.asset -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Resources/TMP Settings.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/TextMesh Pro/Resources/TMP Settings.asset.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/TextMesh Pro/Shaders.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_Bitmap-Custom-Atlas.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Custom-Atlas.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_Bitmap-Custom-Atlas.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Custom-Atlas.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_Bitmap-Mobile.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Mobile.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_Bitmap-Mobile.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Mobile.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_Bitmap.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/TextMesh Pro/Shaders/TMP_Bitmap.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_Bitmap.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/TextMesh Pro/Shaders/TMP_Bitmap.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF Overlay.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF Overlay.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF Overlay.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF Overlay.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF SSD.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF SSD.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF SSD.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF SSD.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Masking.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Masking.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Masking.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Masking.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Overlay.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Overlay.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Overlay.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Overlay.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile SSD.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile SSD.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile SSD.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile SSD.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF-Surface-Mobile.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface-Mobile.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF-Surface-Mobile.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface-Mobile.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF-Surface.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF-Surface.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_SDF.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/TextMesh Pro/Shaders/TMP_SDF.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_Sprite.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/TextMesh Pro/Shaders/TMP_Sprite.shader -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMP_Sprite.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/TextMesh Pro/Shaders/TMP_Sprite.shader.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMPro.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/TextMesh Pro/Shaders/TMPro.cginc -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMPro.cginc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/TextMesh Pro/Shaders/TMPro.cginc.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMPro_Mobile.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/TextMesh Pro/Shaders/TMPro_Mobile.cginc -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMPro_Mobile.cginc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/TextMesh Pro/Shaders/TMPro_Mobile.cginc.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMPro_Properties.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/TextMesh Pro/Shaders/TMPro_Properties.cginc -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMPro_Properties.cginc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/TextMesh Pro/Shaders/TMPro_Properties.cginc.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMPro_Surface.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/TextMesh Pro/Shaders/TMPro_Surface.cginc -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Shaders/TMPro_Surface.cginc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/TextMesh Pro/Shaders/TMPro_Surface.cginc.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Sprites.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/TextMesh Pro/Sprites.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Sprites/EmojiOne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/TextMesh Pro/Sprites/EmojiOne.json -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Sprites/EmojiOne.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/TextMesh Pro/Sprites/EmojiOne.json.meta -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Sprites/EmojiOne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/TextMesh Pro/Sprites/EmojiOne.png -------------------------------------------------------------------------------- /Assets/TextMesh Pro/Sprites/EmojiOne.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/TextMesh Pro/Sprites/EmojiOne.png.meta -------------------------------------------------------------------------------- /Assets/UniversalRenderPipelineGlobalSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/UniversalRenderPipelineGlobalSettings.asset -------------------------------------------------------------------------------- /Assets/UniversalRenderPipelineGlobalSettings.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/UniversalRenderPipelineGlobalSettings.asset.meta -------------------------------------------------------------------------------- /Assets/ljspeech_mapper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/ljspeech_mapper.json -------------------------------------------------------------------------------- /Assets/ljspeech_mapper.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Assets/ljspeech_mapper.json.meta -------------------------------------------------------------------------------- /Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Packages/manifest.json -------------------------------------------------------------------------------- /Packages/packages-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/Packages/packages-lock.json -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/BurstAotSettings_StandaloneWindows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/ProjectSettings/BurstAotSettings_StandaloneWindows.json -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/CommonBurstAotSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/ProjectSettings/CommonBurstAotSettings.json -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/MemorySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/ProjectSettings/MemorySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/PackageManagerSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/ProjectSettings/PackageManagerSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/SceneTemplateSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/ProjectSettings/SceneTemplateSettings.json -------------------------------------------------------------------------------- /ProjectSettings/ShaderGraphSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/ProjectSettings/ShaderGraphSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/URPProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/ProjectSettings/URPProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/ProjectSettings/VersionControlSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixonyh/UnityTTSExamples/HEAD/README.md --------------------------------------------------------------------------------