Go to file
Nolan Darilek 35afabbdca Upgrade Gradle. 2023-04-26 09:55:33 -05:00
.cargo Statically link MSVC runtime on Windows. 2020-10-08 10:40:36 -05:00
.github/workflows Add 32 bits builds in CI 2023-03-18 15:43:44 +00:00
.vscode Add VSCode build task. 2020-06-18 15:58:02 -05:00
gradle/wrapper Upgrade Gradle. 2023-04-26 09:55:33 -05:00
libs Bump Android dependency to Godot 3.2.3. 2020-09-30 13:50:51 -05:00
src Merge branch 'master' into pr/dylanjaide/7 2023-04-26 09:48:23 -05:00
.gitattributes Switch to Gradle for builds. 2020-08-18 10:28:53 -05:00
.gitignore Update .gitignore. 2020-10-09 07:16:58 -05:00
Cargo.toml Simplify screen reader detection code to use `Tts` APIs. 2022-12-16 10:24:32 -06:00
LICENSE Add MIT license. 2018-06-13 12:19:07 +00:00
README.md Add a short usage description. 2020-11-21 10:21:33 +01:00
TTS.gd Initial test of adding volume, javascript only for now 2022-03-12 18:04:53 +00:00
build.gradle Changes necessary to get working on Android. 2020-08-18 17:23:05 -05:00
godot-tts.gdap Changes necessary to get working on Android. 2020-08-18 17:23:05 -05:00
godot-tts.gdnlib Add 32 bits builds in CI 2023-03-18 15:43:44 +00:00
godot-tts.gdnlib.release Add 32 bits builds in CI 2023-03-18 15:43:44 +00:00
godot-tts.gdns Fix another name inconsistency. 2019-09-13 10:03:13 -05:00
gradlew Upgrade Gradle. 2023-04-26 09:55:33 -05:00
gradlew.bat Upgrade Gradle. 2023-04-26 09:55:33 -05:00

README.md

Godot TTS

This addon was primarily developed for the Godot Accessibility addon, but should work well in other contexts where a Godot game might require text-to-speech.

Supported Platforms

Text-to-speech is complicated, and some features may not work everywhere. Most optional features have an associated boolean property used to determine if the feature is available. Further, while I do attempt to ensure that this addon works as well as possible on all platforms, there may be bugs, and pull requests are welcome. Known supported platforms include:

  • Windows
    • Screen readers/SAPI via Tolk (requires use_tolk Cargo feature)
    • WinRT
  • Linux via Speech Dispatcher
  • MacOS
    • AppKit on MacOS 10.13 and below
    • AVFoundation on MacOS 10.14 and above, and iOS
  • Web

Features

Note that not all features are supported on all synthesizers. Any feature that may not be supported has a boolean property that can be checked to determine whether it works on the current platform.

  • Speaking text, with interruption support on most platforms
  • Stopping speech in progress
  • Getting and setting speech rate in both native synthesizer units and percentages
  • Detecting whether a screen reader is active
  • Determining whether the synthesizer is speaking, and sending a signal on completion

API

The public-facing API is contained entirely within TTS.GD.

Download

Download the latest release.

Usage

Inside your projects root folder create a new folder named addons. Then extract godot-tts.zip into that folder. After attaching TTS.GD to a node you can make calls to the API.

Notes on Android

Usage on Android is a bit more complicated:

  • Set up a custom Android build.
  • Create a directory reachable at res://android/plugins and place the godot-tts.aar and .godot-tts.gdap files from a release into that directory.
  • Update res://android/build/config.gradle to specify a minSdk of at least 21. Individual versions may vary, but minSdk is the critical value from this example:
ext.versions = [
    androidGradlePlugin: '3.5.3',
    compileSdk         : 29,
    minSdk             : 21,
    targetSdk          : 29,
    buildTools         : '29.0.3',
    supportCoreUtils   : '1.0.0',
    kotlinVersion      : '1.3.61',
    v4Support          : '1.0.0'

]

Notes on Universal Windows Platform

Godot's UWP export is currently broken. In order to use this addon in a UWP game, do the following:

  1. Export to UWP.
  2. Extract the newly-created .appx file with makeappx unpack.
  3. If you've extracted the .appx file to a directory like _mygame_, copy addons\godot-tts\target\release\godot_tts.dll to mygame\game\addons\godot-tts\target\release\godot_tts.dll, creating the directory if it doesn't exist.
  4. Repack the appx using makeappx.

It should then be ready to sign and install. Hopefully Godot's UWP export will eventually copy GDNative DLLs correctly so this procedure isn't necessary.