mirror of
https://github.com/godotengine/godot.git
synced 2025-12-07 22:00:10 +00:00
[.NET] Add compat method for DisplayServer.TtsSpeak
This commit is contained in:
parent
ef34c3d534
commit
513e421209
1 changed files with 9 additions and 0 deletions
|
|
@ -76,6 +76,15 @@ partial class CodeEdit
|
|||
}
|
||||
}
|
||||
|
||||
partial class DisplayServer
|
||||
{
|
||||
/// <inheritdoc cref="TtsSpeak(string, string, int, float, float, long, bool)"/>
|
||||
public static void TtsSpeak(string text, string voice, int volume, float pitch, float rate, int utteranceId, bool interrupt)
|
||||
{
|
||||
TtsSpeak(text, voice, volume, pitch, rate, (long)utteranceId, interrupt);
|
||||
}
|
||||
}
|
||||
|
||||
partial class Geometry3D
|
||||
{
|
||||
/// <inheritdoc cref="SegmentIntersectsConvex(Vector3, Vector3, Godot.Collections.Array{Plane})"/>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue