The documentation for AACS and the CodeEditor.
Hides the textbox, with a fade animation or without.
Name | Type | Description | Required | Default Value |
---|---|---|---|---|
Fade | Boolean | Whether the textbox should disappear by fading or instantly. | ✗ | true |
1: HideTextBox:[true];
or
2: HideTextBox:[-];
1: HTB:[false];
This instruction breaks a syntax rule: Using a null character is not necessary. HTB;
and HideTextBox;
are valid and will be interpreted as HTB:[true];
and HideTextBox:[true];
respectively.
SetCharacter will execute this instruction as well unless the WaitForPre
parameter is false
and there is a DisplayText instruction following immediately afterwards.
If these conditions are not met, SetCharacter will execute this instruction as HideTextBox:[true];
.
LoadCharacter will execute this instruction as well unless the WaitForPre
parameter is false
and there is a DisplayText instruction following immediately afterwards.
If these conditions are not met, LoadCharacter will execute this instruction as HideTextBox:[false];
.