Text Engine: различия между версиями

Материал из Поле цифровой дидактики
м (1 версия импортирована)
Строка 1: Строка 1:
{{merge|Text Rendering|date=January 2021}}
{{stub|date=April 2021}}
'''Text Engines''' have several uses in Scratch. One common reason a text engine is used for [[dialog]].
'''Text Engines''' have several uses in Scratch. One common reason a text engine is used for [[dialog]].



Версия 08:26, 11 ноября 2023

Text Engines have several uses in Scratch. One common reason a text engine is used for dialog.

Creating The Engine

Code

The code is fairly simple, but a little hard to follow/understand.

define Player Dialogue Block (Text) (Text Timer)
set [Numbers# v] to (1)
set [Word v] to ()
repeat (length of (Text))
change [Numbers# v] by (1)
say (join (Word) (letter (Number#) of (Text)
set [Word v] to (join (Word) (letter (Number#) of (Text)
wait (0.05) seconds
end
wait (Text Timer) seconds//how long the text is displayed
say ()

Шаблон:Note