static int Game.MinimumTextDisplayTimeMs;
Gets/sets the minimum length of time that text is displayed on the screen. AGS automatically
adjusts the length of time that text is displayed for depending on the length of the text
(and you can customize this calculation with Game.TextReadingSpeed),
but for very short statements like "Hi!", you might want the text to remain for longer.
This property is specified in milliseconds (1000 = 1 second), and is set to 1000 by default.
NOTE: This property is ignored if lip-sync is enabled, or if the General Settings
are set not to allow text to be automatically removed.
Example:
Game.MinimumTextDisplayTimeMs = 2000;
will ensure that even the shortest "Hi!" text line will be displayed for at least 2 seconds
Compatibility: Supported by AGS 3.1.2 and later versions.
See Also: Character.SpeechAnimationDelay,
Game.TextReadingSpeed
|